2-step-verification.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. title: 2-Step Verification
  3. layout: single
  4. permalink: 2-step-verification.html
  5. ---
  6. <form
  7. class="card card-md"
  8. action="{{ page | relative }}/2-step-verification-code.html"
  9. method="get"
  10. autocomplete="off"
  11. novalidate
  12. >
  13. <div class="card-body">
  14. <h2 class="card-title text-center mb-4">2-Step Verification</h2>
  15. <div class="mb-3">
  16. <label class="form-label">Country</label>
  17. <select class="form-select">
  18. {% for country in flags %}
  19. <option value="{{ country.code }}"{% if country.code == 'US' %} selected{% endif %}>{{ country.name }}</option>
  20. {% endfor %}
  21. </select>
  22. </div>
  23. <div class="mb-4">
  24. <label class="form-label">Your Phone Number</label>
  25. <div class="input-group">
  26. <span class="input-group-text">+1</span>
  27. <input type="text" class="form-control" placeholder="Enter phone number" />
  28. </div>
  29. </div>
  30. <div class="text-secondary">
  31. Security is critical in Tabler. to help keep your account safe, we'll
  32. text you a verification code when you sign in on a new device
  33. </div>
  34. <div class="form-footer">
  35. {% include "ui/button.html" element="button" type="submit" text="Send code" block=true color="primary" %}
  36. </div>
  37. </div>
  38. </form>