Change password.html 881 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html><head>
  3. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  4. <meta charset="utf-8">
  5. <title>Change password</title>
  6. </head>
  7. <body>
  8. <header>
  9. <nav>
  10. <ul>
  11. <li><a href="My account.html">Home</a></li>
  12. <li><a href="Manage postes.html">Postes</a></li>
  13. <li><a href="Signin.html">Signout</a></li>
  14. </ul>
  15. </nav>
  16. </header>
  17. <main>
  18. <h1>Change password</h1>
  19. <form action="My account.html" method="get">
  20. <label for="newpassword">New password</label> <input type="password" id="newpassword" name="newpassword">
  21. <label for="confirmpassword">Confirm password</label> <input type="password" id="confirmpassword" name="confirmpassword">
  22. <input type="submit" value="Change my password">
  23. </form>
  24. </main>
  25. </body></html>