103 |
- |
1 |
<div class="container col-md-6">
|
|
|
2 |
<h2 class="public_head">
|
|
|
3 |
<i class="fas fa-user-tie"></i>
|
|
|
4 |
<?php echo $spText['login']['Forgot password?']?>
|
|
|
5 |
</h2>
|
|
|
6 |
<div class="public_form">
|
|
|
7 |
<form name="loginForm" method="post" action="<?php echo SP_WEBPATH?>/login.php?sec=forgot">
|
|
|
8 |
<input type="hidden" name="sec" value="requestpass">
|
|
|
9 |
<div class="form-group">
|
|
|
10 |
<label for="email"><?php echo $spText['login']['Email']?>:</label>
|
|
|
11 |
<input type="email" name="email" value="<?php echo $post['email']?>" required="required" class="form-control">
|
|
|
12 |
<?php echo $errMsg['email']?>
|
|
|
13 |
</div>
|
|
|
14 |
<div class="form-group">
|
|
|
15 |
<label for="email"><?php echo $spText['login']['Enter the code as it is shown']?>:</label>
|
|
|
16 |
<div class="form-group">
|
|
|
17 |
<img src="<?php echo SP_WEBPATH?>/visual-captcha.php">
|
|
|
18 |
</div>
|
|
|
19 |
<input type="text" name="code" value="<?php echo $post['code']?>" required="required" class="form-control">
|
|
|
20 |
<?php echo $errMsg['code']?>
|
|
|
21 |
</div>
|
|
|
22 |
<?php if (!isLoggedIn()) { ?>
|
|
|
23 |
<a href="<?php echo SP_WEBPATH?>/login.php" class="btn btn-secondary" role="button"><?php echo $spText['button']['Cancel']?></a>
|
|
|
24 |
<button name="login" type="submit" class="btn btn-primary"><?php echo $spText['login']['Request Password']?></button>
|
|
|
25 |
<?php }?>
|
|
|
26 |
</form>
|
|
|
27 |
</div>
|
|
|
28 |
</div>
|