You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
817 B

  1. <div class="modal fade" id="addLinkModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  2. <div class="modal-dialog modal-dialog-centered" role="document">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <h5 class="modal-title" id="exampleModalLabel">Add Link</h5>
  6. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  7. <span aria-hidden="true">&times;</span>
  8. </button>
  9. </div>
  10. <div class="modal-body">
  11. <input id="link-form" type="text" class="form-control" placeholder="https://example.com" style="width: 80%; float: left;">
  12. <button id="link-btn" type="button" class="btn btn-primary" onclick="addUrl();" style="float: right;">Add</button>
  13. </div>
  14. </div>
  15. </div>
  16. </div>