simple-web-app

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

resend_verification.html (726B)


      1 <div class="auth-page">
      2   <h2>Resend Verification Email</h2>
      3 
      4   {% match message %}
      5   {% when Some with (msg) %}
      6   <div class="success-message">{{ msg }}</div>
      7   {% when None %}
      8   {% endmatch %}
      9 
     10   {% match error %}
     11   {% when Some with (err) %}
     12   <div class="error-message">{{ err }}</div>
     13   {% when None %}
     14   {% endmatch %}
     15 
     16   <form method="post" action="/resend-verification" class="auth-form">
     17     <div class="form-group">
     18       <label for="email">Email</label>
     19       <input type="email" id="email" name="email" required autocomplete="email" />
     20     </div>
     21 
     22     <div class="form-actions">
     23       <button type="submit">Resend</button>
     24     </div>
     25   </form>
     26 
     27   <p class="auth-link"><a href="/login">Back to Login</a></p>
     28 </div>