2-step-verification.html 1.1 KB

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