Bootstrap Free Forgot Password Form Example

Password Reset

Provide the email address associated with your account to recover your password.

Place the code in the <body> for Interface
          
<!-- Password Reset 10 - Bootstrap Brain Component -->
<section class="bg-light py-3 py-md-5 py-xl-8">
  <div class="container">
    <div class="row justify-content-center">
      <div class="col-12 col-sm-10 col-md-8 col-lg-6 col-xl-5 col-xxl-4">
        <div class="mb-5">
          <div class="text-center mb-4">
            <a href="#!">
              <img src="./assets/img/bsb-logo.svg" alt="BootstrapBrain Logo" width="175" height="57">
            </a>
          </div>
          <h4 class="text-center mb-4">Password Reset</h4>
        </div>
        <div class="card border border-light-subtle rounded-4">
          <div class="card-body p-3 p-md-4 p-xl-5">
            <form action="#!">
              <p class="text-center mb-4">Provide the email address associated with your account to recover your password.</p>
              <div class="row gy-3 overflow-hidden">
                <div class="col-12">
                  <div class="form-floating mb-3">
                    <input type="email" class="form-control" name="email" id="email" placeholder="[email protected]" required>
                    <label for="email" class="form-label">Email</label>
                  </div>
                </div>
                <div class="col-12">
                  <div class="d-grid">
                    <button class="btn btn-primary btn-lg" type="submit">Reset Password</button>
                  </div>
                </div>
              </div>
            </form>
          </div>
        </div>
        <div class="d-flex gap-2 gap-md-4 flex-column flex-md-row justify-content-md-center mt-4">
          <a href="#!" class="link-secondary text-decoration-none">Login</a>
          <a href="#!" class="link-secondary text-decoration-none">Register</a>
        </div>
      </div>
    </div>
  </div>
</section>
        
Place the <link> tag in the <head> for CSS
          
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/components/password-resets/password-reset-10/assets/css/password-reset-10.css">
        

This Bootstrap Free Forgot Password Form Example illustrates a user-friendly, responsive, and visually appealing password reset form designed for websites. This example utilizes the Bootstrap framework and typically includes input fields where users can provide their email addresses or usernames associated with their accounts to initiate the password reset process. Its purpose is to showcase how the form can enhance user experience and streamline password recovery.