/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 DuggaSys/changePassword/password.html.php

  • Committer: c11emian
  • Date: 2013-04-05 08:35:29 UTC
  • mto: (19.4.3 lenasys)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: c11emian@student.his.se-20130405083529-3bpc9l6i6z8xl8np
Fixed bug #1164571 by changing the name of newbutton() to newButton() in Parser_Test.html, and bug 
#1164550 by changing all the function-calls named maketoken() to makeToken() in Parser_Test.js

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!DOCTYPE html>
2
2
<html>
3
 
    <head>
4
 
                <meta charset="utf-8" />
5
 
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
 
        <link href="css/base.css" rel="stylesheet" type="text/css" />
7
 
        <link href="css/login.css" rel="stylesheet" type="text/css" />
8
 
        <title><?php $pagetitle ?></title>
9
 
    </head>
10
 
    <body>
11
 
        <form action="." method="post">
12
 
            <h3>Change password</h3>
13
 
            <label for="loginName" >Login:</label>
14
 
            <input type="text" name="loginName" placeholder="Your login" /><br />
15
 
            <label for="password">Password:</label>
16
 
            <input type="password" name="password" placeholder="Your current password"/>
17
 
                        <label for="newPassword">New password:</label>
18
 
            <input type="password" name="newPassword" placeholder="Your new password"/>
19
 
            <input type="submit" name="changePasswordSubmit" value="OK" />
20
 
        </form>
21
 
        <?php
22
 
        if (isset($errorMsg) && $errorMsg!="") {
23
 
            echo "<h3>" . $errorMsg . "</h3>";
24
 
        }
25
 
        ?>
26
 
    </body>
 
3
        <head>
 
4
                <meta charset = "utf-8" />
 
5
                <meta http-equiv = "Content-Type" content = "text/html; charset = utf-8" />
 
6
                <link href = "../../css/base.css" rel = "stylesheet" type = "text/css" />
 
7
                <link href = "../../css/login.css" rel = "stylesheet" type = "text/css" />
 
8
                <title>
 
9
                        <?php 
 
10
                                $pagetitle 
 
11
                        ?>
 
12
                </title>
 
13
        </head>
 
14
        <body>
 
15
                <form action = "." method = "post">
 
16
                        <h3> 
 
17
                                Change password 
 
18
                        </h3>
 
19
                        <label for = "loginName" >
 
20
                                Login:
 
21
                        </label>
 
22
                        <input type = "text" name = "loginName" placeholder = "Your login" /><br />
 
23
                        <label for = "password">
 
24
                                Password:
 
25
                        </label>
 
26
                        <input type = "password" name = "password" placeholder = "Your current password"/>
 
27
                        <label for = "newPassword">
 
28
                                New password:
 
29
                        </label>
 
30
                        <input type = "password" name = "newPassword" placeholder = "Your new password"/>
 
31
                        <input type = "submit" name = "changePasswordSubmit" value = "OK"/>
 
32
                </form>
 
33
                <?php
 
34
                        if( isset( $errorMsg ) && $errorMsg!="") {
 
35
                                echo "<h3>" . $errorMsg . "</h3>";
 
36
                        }
 
37
                ?>
 
38
        </body>
27
39
</html>
 
 
b'\\ No newline at end of file'