templates/forms/send-activation.html.twig line 1

  1. {% extends "base-split.html.twig" %}
  2. {% block right %}
  3. {% if message is defined and message %}
  4.     <div class="alert alert-{{ message.type }}">
  5.     {% if message.type == 'warning' %}
  6.         <i class="fa fa-exclamation-triangle"></i> 
  7.     {% elseif message.type == 'success' %}
  8.         <i class="fa fa-check"></i> 
  9.     {% endif %}
  10.     {{ message.text | raw}}
  11.     </div>
  12. {% endif %}
  13. <form method="POST" action="/send-activation">
  14.     <legend>Re-send Activation Link</legend>
  15.     <p>Enter your e-mail address below and we will re-send the activation link associated with that account.</p>
  16.     
  17.     <label class="btn-block">E-mail Address
  18.         <input 
  19.             class="form-control" 
  20.             type="text" 
  21.             name="email" 
  22.             placeholder="Your E-mail Address"
  23.         />
  24.     </label>
  25.     
  26.     <button 
  27.         type="submit" 
  28.         class="btn btn-secondary text-white bg-dark mt-2"
  29.     >Submit</button>
  30. </form>
  31. <hr />
  32.     
  33.     <ul class="mt-3">
  34.         <li><a href="/sign-in" class="text-white">Click here to Sign In.</a></li>
  35.         <li><a href="/sign-up" class="text-white">Click here to Sign Up.</a></li>
  36.         <li><a href="/forgot-password" class="text-white">Forgot Password?</a></li>
  37.         <li><a href="/forgot-username" class="text-white">Forgot Username?</a></li>
  38.     </ul>
  39. {% endblock %}