forgot-password.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  6. <title>Forgot Password | Bootstrap Based Admin Template - Material Design</title>
  7. <!-- Favicon-->
  8. <link rel="icon" href="../../favicon.ico" type="image/x-icon">
  9. <!-- Google Fonts -->
  10. <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
  11. <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
  12. <!-- Bootstrap Core Css -->
  13. <link href="../../plugins/bootstrap/css/bootstrap.css" rel="stylesheet">
  14. <!-- Waves Effect Css -->
  15. <link href="../../plugins/node-waves/waves.css" rel="stylesheet" />
  16. <!-- Animation Css -->
  17. <link href="../../plugins/animate-css/animate.css" rel="stylesheet" />
  18. <!-- Custom Css -->
  19. <link href="../../css/style.css" rel="stylesheet">
  20. </head>
  21. <body class="fp-page">
  22. <div class="fp-box">
  23. <div class="logo">
  24. <a href="javascript:void(0);">Admin<b>BSB</b></a>
  25. <small>Admin BootStrap Based - Material Design</small>
  26. </div>
  27. <div class="card">
  28. <div class="body">
  29. <form id="forgot_password" method="POST">
  30. <div class="msg">
  31. Enter your email address that you used to register. We'll send you an email with your username and a
  32. link to reset your password.
  33. </div>
  34. <div class="input-group">
  35. <span class="input-group-addon">
  36. <i class="material-icons">email</i>
  37. </span>
  38. <div class="form-line">
  39. <input type="email" class="form-control" name="email" placeholder="Email" required autofocus>
  40. </div>
  41. </div>
  42. <button class="btn btn-block btn-lg bg-pink waves-effect" type="submit">RESET MY PASSWORD</button>
  43. <div class="row m-t-20 m-b--5 align-center">
  44. <a href="sign-in.html">Sign In!</a>
  45. </div>
  46. </form>
  47. </div>
  48. </div>
  49. </div>
  50. <!-- Jquery Core Js -->
  51. <script src="../../plugins/jquery/jquery.min.js"></script>
  52. <!-- Bootstrap Core Js -->
  53. <script src="../../plugins/bootstrap/js/bootstrap.js"></script>
  54. <!-- Waves Effect Plugin Js -->
  55. <script src="../../plugins/node-waves/waves.js"></script>
  56. <!-- Validation Plugin Js -->
  57. <script src="../../plugins/jquery-validation/jquery.validate.js"></script>
  58. <!-- Custom Js -->
  59. <script src="../../js/admin.js"></script>
  60. <script src="../../js/pages/examples/forgot-password.js"></script>
  61. </body>
  62. </html>