Commit 683e5f9967efbe9f225fabbe8d07c3574fff5fc2
1 parent
51e663b8
Exists in
master
and in
5 other branches
Updating create link template [Issue: #120]
Showing
1 changed file
with
32 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,32 @@ | @@ -0,0 +1,32 @@ | ||
1 | +<!--MODAL CREATE LINK--> | ||
2 | +<div class="modal fade" id="createLinksModal" tabindex="-1" role="dialog" aria-labelledby="createLink" style="display: none;"> | ||
3 | + <div class="modal-dialog" role="document"> | ||
4 | + <div class="modal-content"> | ||
5 | + <div class="modal-header"> | ||
6 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | ||
7 | + <h4 class="modal-title" id="createLink">Create a New Link</h4> | ||
8 | + </div> | ||
9 | + <div class="modal-body"> | ||
10 | + <!-- Card --> | ||
11 | + <div class="form-group is-empty"> | ||
12 | + <label class="control-label" for="inputDefault">Name</label> | ||
13 | + <input type="text" class="form-control" id="inputDefault"> | ||
14 | + </div> | ||
15 | + <div class="form-group is-empty"> | ||
16 | + <label class="control-label" for="inputDefault">Url</label> | ||
17 | + <input type="text" class="form-control" id="inputDefault"> | ||
18 | + </div> | ||
19 | + <div class="form-group is-empty"> | ||
20 | + <label class="control-label" for="inputDefault">Descrição</label> | ||
21 | + <textarea class="form-control" rows="3"></textarea> | ||
22 | + </div> | ||
23 | + <div class="form-group"> | ||
24 | + <a href="javascript:void(0)" class="btn btn-raised btn-default">Cancel</a> | ||
25 | + <a href="javascript:void(0)" class="btn btn-raised btn-primary">Submit</a> | ||
26 | + </div> | ||
27 | + <!-- .end Card --> | ||
28 | + </div> | ||
29 | + </div> | ||
30 | + </div> | ||
31 | +</div> | ||
32 | +<!-- EndModal --> |