forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lost_pwd_page.php
95 lines (87 loc) · 3.52 KB
/
lost_pwd_page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* @package MantisBT
* @author Marcello Scata' <marcelloscata at users.sourceforge.net> ITALY
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses config_api.php
* @uses constant_inc.php
* @uses form_api.php
* @uses helper_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses print_api.php
*/
/**
* MantisBT Core API's
*/
require_once( 'core.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'form_api.php' );
require_api( 'helper_api.php' );
require_api( 'html_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
require_css( 'login.css' );
# lost password feature disabled or reset password via email disabled -> stop here!
if ( LDAP == config_get_global( 'login_method' ) ||
OFF == config_get( 'lost_password_feature' ) ||
OFF == config_get( 'send_reset_password' ) ||
OFF == config_get( 'enable_email_notification' ) ) {
trigger_error( ERROR_LOST_PASSWORD_NOT_ENABLED, ERROR );
}
# don't index lost password page
html_robots_noindex();
html_page_top1();
html_page_top2a();
?>
<div id="lost-password-div" class="form-container">
<form id="lost-password-form" method="post" action="lost_pwd.php">
<fieldset>
<legend><span><?php echo lang_get( 'lost_password_title' ); ?></span></legend>
<ul id="login-links">
<li><a href="login_page.php"><?php echo lang_get( 'login_link' ); ?></a></li>
<li><a href="signup_page.php"><?php echo lang_get( 'signup_link' ); ?></a></li>
</ul>
<?php
echo form_security_field( 'lost_pwd' );
$t_allow_passwd = helper_call_custom_function( 'auth_can_change_password', array() );
if ( $t_allow_passwd ) { ?>
<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
<label for="username"><span><?php echo lang_get( 'username' ) ?></span></label>
<span class="input"><input id="username" type="text" name="username" size="32" maxlength="<?php echo DB_FIELD_SIZE_USERNAME;?>" class="autofocus" /></span>
<span class="label-style"></span>
</div>
<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
<label for="email-field"><span><?php echo lang_get( 'email' ) ?></span></label>
<span class="input"><?php print_email_input( 'email', '' ) ?></span>
<span class="label-style"></span>
</div>
<span id="lost-password-msg"><?php echo lang_get( 'lost_password_info' ); ?></span>
<span class="submit-button"><input type="submit" class="button" value="<?php echo lang_get( 'submit_button' ) ?>" /></span><?php
} else {
echo '<span id="no-password-msg">';
echo lang_get( 'no_password_request' );
echo '</span>';
} ?>
</fieldset>
</form>
</div><?php
html_page_bottom1a( __FILE__ );