website_form.html 957 B

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