1
<div id="passwordChanger">
2
<p class="passwordHeader">Change password</p><p class="passwordHeaderBorder"></p>
3
<form id="changePassword" onsubmit="return confirm('<?php echo base_url(); ?>'); return false;">
5
<span class="errorMessage" name="currentPwd" title="Enter your current password.">#</span>
6
<input type="password" id="currentPwd"/>
9
<span class="errorMessage" name="newPwd" title="Password can only use: a-z A-Z 0-9 _ - and must be of minimum 6 characters.">#</span>
10
<input type="password" id="newPwd" onkeyup="validNewPwd(), validRepeatedPwd();"/>
13
<span class="errorMessage" name="repeatPwd" title="Passwords don't match!">#</span>
14
<input type="password" id="repeatPwd" onkeyup="validRepeatedPwd();"/>
17
<span class="errorMessage" name="hintPwd" title="This hint should be cool!">#</span>
18
<input type="text" id="hintPwd"/>
20
<input type="button" class="button" value="Cancel" onclick="cancelPasswordChange();"/>
21
<input type="button" class="button" value="Ok" onclick="confirm('<?php echo base_url(); ?>');"/>
b'\\ No newline at end of file'