wizard.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. title: Wizard
  3. layout: single
  4. page-menu: extra.wizard
  5. permalink: wizard.html
  6. ---
  7. <div class="card card-md">
  8. <div class="card-body text-center py-4 p-sm-5">
  9. {% include "ui/illustration.html" image="boy-girl.svg" height="200" class="mb-n2" %}
  10. <h1 class="mt-5">Welcome to Tabler!</h1>
  11. <p class="text-secondary">Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again.</p>
  12. </div>
  13. {% include "ui/hr.html" text="your data" position="center" class="hr-text-spaceless" %}
  14. <div class="card-body">
  15. <div class="mb-3">
  16. <label class="form-label">Create your Tabler URL</label>
  17. {% include "ui/form/input-group.html" prepend="https://tabler.io/" input-class="ps-1" flat=true %}
  18. <div class="form-hint">Choose a URL that describes you or your business in a concise way. Make it short and easy to remember so you can share links with ease.</div>
  19. </div>
  20. <div>
  21. <label class="form-label">Timezone</label>
  22. <select class="form-select mb-0">
  23. {% for timezone in timezones %}
  24. <option value="{{ timezone.abbr }}"{% if timezone.abbr == 'CEDT' %} selected{% endif %}>{{ timezone.text }}</option>
  25. {% endfor %}
  26. </select>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="row align-items-center mt-3">
  31. <div class="col-4">
  32. {% include "ui/progress.html" value=25 %}
  33. </div>
  34. <div class="col">
  35. <div class="btn-list justify-content-end">
  36. {% include "ui/button.html" text="Set up later" color="link link-secondary" %}
  37. {% include "ui/button.html" text="Continue" color="primary" %}
  38. </div>
  39. </div>
  40. </div>