| 1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>BIM</title>
- </head>
- <body>
- <form method="post" accept-charset="UTF-8" action="../changepasswd.php">
- <h3><label for="password">Current password</label></h3>
- <input id="password_current" type="password" name="password_current">
-
- <h3><label for="password">New password</label></h3>
- <input id="password" type="password" name="password">
- <h3><label for="password_conf">Confirm password</label></h3>
- <input id="password_conf" type="password" name="password_conf">
-
- <input type="submit" value="Confirm">
-
- {% if session.message is defined %}
- <p>{{ session.message }}</p>
- {% endif %}
- </form>
-
- </body>
- </html>
|