Advertisement
Guest User

forgotpassword.html

a guest
Dec 19th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <title>Password Recovery</title>
  4. <body>
  5. <center>
  6. <style>
  7. body {background-image: url("buttons/background.png");}
  8. body {font-family: 'Tangerine', serif;}
  9. </style>
  10.  
  11. <img src= buttons/passwordrecover.png height="111" alt=""/>
  12. <br>
  13. <br>
  14. <br>
  15.  
  16. <br>
  17. <br>
  18. <form action="">
  19. Username: <input type="text" name="username" id="username">
  20. <br>
  21. <br>
  22. Security Question:<select>
  23. <option id="selected1" value="selected1">When did you learn to swim?</option>
  24. <option id="selected2"value="selected2">Who was your 1st grade Teacher?</option>
  25. <option id="selected3" value="selected3">What is your favourite Animal?</option>
  26. <option id="selected4" value="selected4">What is your favourite place to visit?</option>
  27. </select>
  28. <br>
  29. <br>
  30. Security Answer: <input id="securityanswer" type="text" name"securityanswer">
  31. <br>
  32. <br>
  33. <input onclick="EmailNotify()" type="submit" name="submit" id="submit" value="Submit"/>
  34.  
  35. <p id="email"></p>
  36.  
  37.  
  38. </form>
  39. <script>
  40. function EmailNotify() {
  41. document.getElementById("email").innerHTML = "An email has been sent to you regarding the password recovery.";
  42. }
  43. </script>
  44. </center>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement