You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

change-pw.html 1.4KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=2.0">
  6. <title>Change Password</title>
  7. <link rel="stylesheet" text="text/css" href="styles.css">
  8. <script src="change-pw.js"></script>
  9. </head>
  10. <body>
  11. <div class="main">
  12. <div class="container">
  13. <div class="header">
  14. <h1>Change Password</h1>
  15. </div>
  16. <form name="login" method="post" id="loginform">
  17. <div class="datasec">
  18. <input class="password" type="password" name="password" id="old_pw" required placeholder="Old Password">
  19. </div>
  20. <div class="datasec">
  21. <input class="password" type="password" name="password" id="new_pw_1" required placeholder="New Password">
  22. </div>
  23. <div class="datasec">
  24. <input class="password" type="password" name="password" id="new_pw_2" required placeholder="Confirm Password">
  25. </div>
  26. <div class="buttons-container">
  27. <button class="button"
  28. type="submit"
  29. name="submit">
  30. <span id="loginText">Change Password</span>
  31. </button>
  32. </div>
  33. </form>
  34. </div>
  35. </div>
  36. </body>
  37. </html>