Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
UserBundle /
Form /
Type /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
UserForgotPwType.php
2.69
KB
-rwxrwxr-x
2026-04-02 12:06
UserMyDetailsType.php
4.69
KB
-rwxrwxr-x
2026-04-02 12:06
UserRegisterType.php
14.13
KB
-rwxrwxr-x
2026-04-02 12:06
UserResetPwType.php
5.4
KB
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
1.26
KB
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\UserBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\Form\Extension\Core\Type\EmailType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Validator\Constraints\Length; use Symfony\Component\Validator\Constraints\Email; use EWZ\Bundle\RecaptchaBundle\Form\Type\EWZRecaptchaV3Type; class UserForgotPwType extends AbstractType { private $serviceContainer = null; private $myDetails = false; public function __construct(ContainerInterface $serviceContainer, $myDetails = false) { $this->serviceContainer = $serviceContainer; $this->myDetails = $myDetails; } public function getServiceContainer() { return $this->serviceContainer; } public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add( 'e_mail_address_string', EmailType::class, array( 'constraints' => array( new Length(array('min' => 0, 'max' => 255)), new Email(), ), 'label' => 'E-Mail: *', 'attr' => array('placeholder' => 'E-Mail', 'class' => 'form-control'), 'required' => true, ) ) ->add( 'recaptcha', EWZRecaptchaV3Type::class, array( 'mapped' => false, 'attr' => array( 'options' => array( 'theme' => 'light', 'type' => 'image', 'size' => 'normal', 'defer' => true, 'async' => true, ) ), 'label' => ' ', ) ) ; // $systemSettingManager = $this->serviceContainer->get('system_setting.manager'); // if ($systemSettingManager->getSetting('go_digital') > 0) { // $builder->remove('captcha') // ->add( // 'captcha', EWZRecaptchaV3Type::class, array( // 'mapped' => false, // ) // ) // ; // } } public function getParent() { return \Symfony\Component\Form\Extension\Core\Type\FormType::class; } public function getName() { return 'user_forgot_pw'; } public function setDefaultOptions(OptionsResolverInterface $resolver) { } }