form.html 1.6 KB

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