website_form.html 924 B

1234567891011121314151617181920212223
  1. <template name="website_form">
  2. <a class="btn btn-default js-toggle-website-form" href="#">
  3. <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
  4. </a>
  5. <div id="website_form" class="hidden_div">
  6. <form class="js-save-website-form">
  7. <div class="form-group">
  8. <label for="url">Site address</label>
  9. <input type="text" class="form-control" id="url" placeholder="http://www.mysite.com">
  10. </div>
  11. <div class="form-group">
  12. <label for="title">Title</label>
  13. <input type="text" class="form-control" id="title" placeholder="Mysite">
  14. </div>
  15. <div class="form-group">
  16. <label for="description">Description</label>
  17. <input type="text" class="form-control" id="description" placeholder="I found this site really useful for ...">
  18. </div>
  19. <button type="submit" class="btn btn-default">Submit</button>
  20. </form>
  21. </div>
  22. </template>