form.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <section id="form" data-transition="slide">
  2. <header data-title="Form Elements">
  3. <nav class="button">
  4. <a href="#back" data-target="section" data-label="back"></a>
  5. </nav>
  6. </header>
  7. <article class="list scroll">
  8. <ul>
  9. <li class="contrast">
  10. <input type="search" placeholder="type your search" />
  11. <a href="#" class="button theme" data-icon="search"></a>
  12. </li>
  13. <li>
  14. <label>Example of text</label>
  15. <input type="text" placeholder="type your name" />
  16. </li>
  17. <li>
  18. <label>Example of textarea</label>
  19. <textarea placeholder="type your name"></textarea>
  20. </li>
  21. <li>
  22. <label>Example of select</label>
  23. <label class="select">
  24. <select class="custom">
  25. <option value="1">One</option>
  26. <option value="2">Two</option>
  27. <option value="3">Three</option>
  28. </select>
  29. </label>
  30. </li>
  31. <li class="padding">
  32. <label>Do you like Lungo forms?</label>
  33. <label class="checkbox right"><input type="checkbox" id="checkbox-0" checked/></label>
  34. </li>
  35. <li class="padding">
  36. <label>Example of progress</label>
  37. <div id="progress-normal" data-progress="25%"></div>
  38. </li>
  39. <li>
  40. <label>Example of range</label>
  41. <input type="range" placeholder="type your name" />
  42. </li>
  43. </ul>
  44. </article>
  45. </section>