/lenasys/0.1

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

« back to all changes in this revision

Viewing changes to trunk/DuggaSys/changePassword/password.html.php

  • Committer: gustav.hartvigsson at gmail
  • Date: 2013-04-02 13:00:31 UTC
  • mfrom: (4.7.8 GammaBear)
  • Revision ID: gustav.hartvigsson@gmail.com-20130402130031-442y89s0cfzmw3r2
Merged stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!DOCTYPE html>
2
2
<html>
3
 
    <head>
 
3
        <head>
4
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"/>
 
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
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>
 
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>
27
27
</html>
 
 
b'\\ No newline at end of file'