initial commit
This commit is contained in:
25
application/view/user/changePassword.php
Normal file
25
application/view/user/changePassword.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<div class="container">
|
||||
<h1>UserController/changePassword</h1>
|
||||
|
||||
<!-- echo out the system feedback (error and success messages) -->
|
||||
<?php $this->renderFeedbackMessages(); ?>
|
||||
|
||||
<div class="box">
|
||||
<h2>Set new password</h2>
|
||||
|
||||
<!-- new password form box -->
|
||||
<form method="post" action="<?php echo Config::get('URL'); ?>user/changePassword_action" name="new_password_form">
|
||||
<label for="change_input_password_current">Enter Current Password:</label>
|
||||
<p><input id="change_input_password_current" class="reset_input" type='password'
|
||||
name='user_password_current' pattern=".{6,}" required autocomplete="off" /></p>
|
||||
<label for="change_input_password_new">New password (min. 6 characters)</label>
|
||||
<p><input id="change_input_password_new" class="reset_input" type="password"
|
||||
name="user_password_new" pattern=".{6,}" required autocomplete="off" /></p>
|
||||
<label for="change_input_password_repeat">Repeat new password</label>
|
||||
<p><input id="change_input_password_repeat" class="reset_input" type="password"
|
||||
name="user_password_repeat" pattern=".{6,}" required autocomplete="off" /></p>
|
||||
<input type="submit" name="submit_new_password" value="Submit new password" />
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user