/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/application/views/popup/passwordChanger.php

  • Committer: a11timgu
  • Date: 2013-05-30 08:52:01 UTC
  • mfrom: (125 lenasys_b)
  • mto: This revision was merged to the branch mainline in revision 127.
  • Revision ID: a11timgu@student.his.se-20130530085201-vzvlcuxzljq5m2zh
sdasdawd:

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<div id="passwordChanger">
2
 
        <p class="passwordHeader">Change password</p><p class="passwordHeaderBorder"></p>
 
1
<div id="passwordChanger" class="popup">
 
2
        <h2 class="popupHeader">Change Password</h2>
3
3
        <form id="changePassword" onsubmit="return confirm('<?php echo base_url(); ?>'); return false;">
4
 
                <p>Current password:
5
 
                        <span class="errorMessage" name="currentPwd" title="Enter your current password.">#</span>
6
 
                        <input type="password" id="currentPwd"/>
7
 
                </p>
8
 
                <p>New password:
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();"/>
11
 
                </p>
12
 
                <p>Repeat password:
13
 
                        <span class="errorMessage" name="repeatPwd" title="Passwords don't match!">#</span>
14
 
                        <input type="password" id="repeatPwd" onkeyup="validRepeatedPwd();"/>
15
 
                </p>
16
 
                <p>Password hint:
17
 
                        <span class="errorMessage" name="hintPwd" title="This hint should be cool!">#</span>
18
 
                        <input type="text" id="hintPwd"/>
19
 
                </p>
20
 
                <input type="button" class="button" value="Cancel" onclick="cancelPasswordChange();"/>
21
 
                <input type="button" class="button" value="Ok" onclick="confirm('<?php echo base_url(); ?>');"/>
 
4
                <ul>
 
5
                        <li>
 
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">
 
9
                        </li>
 
10
                        <li>
 
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">
 
14
                        </li>
 
15
                        <li>
 
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">
 
19
                        </li>
 
20
                        <li>
 
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">
 
24
                        </li>
 
25
                </ul>
 
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>
 
29
                </div>
22
30
        </form>
23
31
</div>
 
 
b'\\ No newline at end of file'