Reset Password

After a user has completed the Forgot Password form, they should receive an email with a unique link to reset their password.

Design Sample
New Password
This password does not meet the minimum requirements below
Confirm New Password
Your passwords do not match
Notes

As with other components in the design system, it is possible to add validation conditions to any <input>. Simply add a .valid or .invalid class to the .field class.

html
<form class="sm">
  <fieldset>
    <legend>New Password</legend>
    <div class="field"> <!-- change to 'field valid' or 'field invalid' as necessary -->
      <span class="error-message">This password does not meet the minimum requirements below</span>
      <input type="password" name="new-password" id="new-password" placeholder="Choose a password" maxlength="50" minlength="8" autocomplete="new-password">
      <label for="new-password">New Password&#42;</label>
      <span toggle="#new-password" class="la la-eye-slash show-hide-password"></span>
      <span class="valid password"><i class="la la-check-circle-o"></i></span>
    </div>
  </fieldset>
  <fieldset>
    <legend>Confirm New Password</legend>
    <div class="field"> <!-- change to 'field valid' or 'field invalid' as necessary -->
      <span class="error-message">Your passwords do not match</span>
      <input type="password" name="confirm-password" id="confirm-password" placeholder="Confirm your password" maxlength="50" minlength="8" autocomplete="new-password">
      <label for="confirm-password">Confirm New Password&#42;</label>
      <span toggle="#confirm-password" class="la la-eye-slash show-hide-password"></span>
      <span class="valid password"><i class="la la-check-circle-o"></i></span>
    </div>
  </fieldset>
  <div class="button-box">
    <button class="button color-one"><span class="button-label">Reset Password<span class="post"><span class="processing"><i class="la la-refresh la-spin"></i></span></span></span></button>
  </div>
</form>