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
|
<div id="passwordChanger" class="popup">
<h2 class="popupHeader">Change Password</h2>
<form id="changePassword" onsubmit="return confirm('<?php echo base_url(); ?>'); return false;">
<ul>
<li>
<label for="currentPwd">Current password:</label>
<span class="errorMessage" title="Enter your current password.">#</span>
<input type="text" class="text" id="currentPwd" name="currentPwd" placeholder="Current password">
</li>
<li>
<label for="newPwd">New password:</label>
<span class="errorMessage" title="Password can only use: a-z A-Z 0-9 _ - and must be of minimum 6 characters.">#</span>
<input type="password" class="text" name="newPwd" id="newPwd" onkeyup="validNewPwd(), validRepeatedPwd();" placeholder="New password">
</li>
<li>
<label for="repeatMsg">Repeat password:</label>
<span class="errorMessage" title="Passwords don't match!">#</span>
<input type="password" id="repeatPwd" onkeyup="validRepeatedPwd();" name="repeatPwd" placeholder="Repeat password" class="text">
</li>
<li>
<label for="hintPwd">Password hint:</label>
<span class="errorMessage" name="hintPwd" title="This hint should be cool!">#</span>
<input type="text" id="hintPwd" class="text" placeholder="Password hint">
</li>
</ul>
<div class="bottomMenu">
<button class="button popupButton cancelButton" onclick="cancelPasswordChange();" class="">Cancel</button>
<button type="bumit" class="button popupButton" onclick="confirm('<?php echo base_url(); ?>');">Confirm</button>
</div>
</form>
</div>
|