1
<div id="passwordChanger" class="popup">
2
<h2 class="popupHeader">Change Password</h2>
3
<form id="changePassword" onsubmit="return confirm('<?php echo base_url(); ?>'); return false;">
6
<label for="currentPwd">Current password:</label>
7
<span class="errorMessage" title="Enter your current password.">#</span>
8
<input type="text" class="text" id="currentPwd" name="currentPwd" placeholder="Current password">
11
<label for="newPwd">New password:</label>
12
<span class="errorMessage" title="Password can only use: a-z A-Z 0-9 _ - and must be of minimum 6 characters.">#</span>
13
<input type="password" class="text" name="newPwd" id="newPwd" onkeyup="validNewPwd(), validRepeatedPwd();" placeholder="New password">
16
<label for="repeatMsg">Repeat password:</label>
17
<span class="errorMessage" title="Passwords don't match!">#</span>
18
<input type="password" id="repeatPwd" onkeyup="validRepeatedPwd();" name="repeatPwd" placeholder="Repeat password" class="text">
21
<label for="hintPwd">Password hint:</label>
22
<span class="errorMessage" name="hintPwd" title="This hint should be cool!">#</span>
23
<input type="text" id="hintPwd" class="text" placeholder="Password hint">
26
<div class="bottomMenu">
27
<button class="button popupButton cancelButton" onclick="cancelPasswordChange();" class="">Cancel</button>
28
<button type="bumit" class="button popupButton" onclick="confirm('<?php echo base_url(); ?>');">Confirm</button>
b'\\ No newline at end of file'