Theme Inspinia
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.

forgot_password.html 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>INSPINIA | Forgot password</title>
  7. <link href="css/bootstrap.min.css" rel="stylesheet">
  8. <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
  9. <link href="css/animate.css" rel="stylesheet">
  10. <link href="css/style.css" rel="stylesheet">
  11. </head>
  12. <body class="gray-bg">
  13. <div class="passwordBox animated fadeInDown">
  14. <div class="row">
  15. <div class="col-md-12">
  16. <div class="ibox-content">
  17. <h2 class="font-bold">Forgot password</h2>
  18. <p>
  19. Enter your email address and your password will be reset and emailed to you.
  20. </p>
  21. <div class="row">
  22. <div class="col-lg-12">
  23. <form class="m-t" role="form" action="index.html">
  24. <div class="form-group">
  25. <input type="email" class="form-control" placeholder="Email address" required="">
  26. </div>
  27. <button type="submit" class="btn btn-primary block full-width m-b">Send new password</button>
  28. </form>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. <hr/>
  35. <div class="row">
  36. <div class="col-md-6">
  37. Copyright Example Company
  38. </div>
  39. <div class="col-md-6 text-right">
  40. <small>© 2014-2015</small>
  41. </div>
  42. </div>
  43. </div>
  44. </body>
  45. </html>