diff --git a/templates/ForgotPasswordForm.php b/templates/ForgotPasswordForm.php index 7a50660b..447ebeb6 100644 --- a/templates/ForgotPasswordForm.php +++ b/templates/ForgotPasswordForm.php @@ -11,19 +11,25 @@ class ForgotPasswordForm extends SubTemplate protected function html_content() { echo ' -
Please fill in the email address you used to sign up in the form below. You will be sent a reset link to your email address.
- -Please fill in the email address you used to sign up in the form below. We will send a reset link to your email address.
+ '; } } diff --git a/templates/LogInForm.php b/templates/LogInForm.php index c2b8835b..0c28e706 100644 --- a/templates/LogInForm.php +++ b/templates/LogInForm.php @@ -11,45 +11,57 @@ class LogInForm extends SubTemplate private $redirect_url = ''; private $emailaddress = ''; + protected $_class = 'content-box container w-50'; + public function setRedirectUrl($url) { - $_SESSION['login_url'] = $url; $this->redirect_url = $url; } public function setEmail($addr) { - $this->emailaddress = htmlentities($addr); + $this->emailaddress = htmlspecialchars($addr); } protected function html_content() { - echo ' - '; +You have successfully confirmed your identify. Please use the form below to set a new password.
-