1
0

formpasswd.html.twig 834 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>BIM</title>
  5. </head>
  6. <body>
  7. <form method="post" accept-charset="UTF-8" action="../changepasswd.php">
  8. <h3><label for="password">Current password</label></h3>
  9. <input id="password_current" type="password" name="password_current">
  10. <h3><label for="password">New password</label></h3>
  11. <input id="password" type="password" name="password">
  12. <h3><label for="password_conf">Confirm password</label></h3>
  13. <input id="password_conf" type="password" name="password_conf">
  14. <input type="submit" value="Confirm">
  15. {% if session.message is defined %}
  16. <p>{{ session.message }}</p>
  17. {% endif %}
  18. </form>
  19. </body>
  20. </html>