1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html>
-
- <head>
-
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
- <title>INSPINIA | Forgot password</title>
-
- <link href="css/bootstrap.min.css" rel="stylesheet">
- <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
-
- <link href="css/animate.css" rel="stylesheet">
- <link href="css/style.css" rel="stylesheet">
-
- </head>
-
- <body class="gray-bg">
-
- <div class="passwordBox animated fadeInDown">
- <div class="row">
-
- <div class="col-md-12">
- <div class="ibox-content">
-
- <h2 class="font-bold">Forgot password</h2>
-
- <p>
- Enter your email address and your password will be reset and emailed to you.
- </p>
-
- <div class="row">
-
- <div class="col-lg-12">
- <form class="m-t" role="form" action="index.html">
- <div class="form-group">
- <input type="email" class="form-control" placeholder="Email address" required="">
- </div>
-
- <button type="submit" class="btn btn-primary block full-width m-b">Send new password</button>
-
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- <hr/>
- <div class="row">
- <div class="col-md-6">
- Copyright Example Company
- </div>
- <div class="col-md-6 text-right">
- <small>© 2014-2015</small>
- </div>
- </div>
- </div>
-
- </body>
-
- </html>
|