forgot.html 781 字节
Newer Older
1 2 3 4 5 6
<form class="card" action="" method="post">

   <div class="card-body p-5">
      <div class="card-title">Forgot password</div>

      <p class="text-muted">Enter your email address and your password will be reset and emailed to you.</p>
7
      <div class="mb-2">
8 9 10 11 12 13 14 15 16 17 18
         <label class="form-label" for="exampleInputEmail1">Email address</label>
         <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
      </div>
      <div class="form-footer">
         <button type="submit" class="btn btn-primary btn-block">Send me new password</button>
      </div>
   </div>
</form>
<div class="text-center text-muted">
   Forget it, <a href="{{ site.base }}/login.html">send me back</a> to the sign in screen.
</div>