Commit a39617d5587b297af66fd7cf613e8854a9f59b16
1 parent
de72a88b
Exists in
master
and in
5 other branches
Files templates -init #133
Showing
2 changed files
with
94 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,47 @@ | @@ -0,0 +1,47 @@ | ||
1 | +<!-- MODAL CREATE FILE --> | ||
2 | +<div class="modal fade" id="createFileModal" tabindex="-1" role="dialog" aria-labelledby="createFileLabel" 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="createFileLabel">Add File</h4> | ||
8 | + </div> | ||
9 | + <div class="modal-body"> | ||
10 | + <!-- Card --> | ||
11 | + <form class="form-horizontal"> | ||
12 | + <fieldset> | ||
13 | + <div class="form-group is-empty"> | ||
14 | + <label for="inputName" class="col-md-2 control-label">Name</label> | ||
15 | + <div class="col-md-10"> | ||
16 | + <input type="text" class="form-control" id="inputText" placeholder="Name"> | ||
17 | + </div> | ||
18 | + </div> | ||
19 | + | ||
20 | + <div class="form-group is-empty is-fileinput"> | ||
21 | + <label for="inputFile" class="col-md-2 control-label">File</label> | ||
22 | + <div class="col-md-10"> | ||
23 | + <input type="text" readonly="" class="form-control" placeholder="Browse..."> | ||
24 | + <input type="file" id="inputFile" multiple=""> | ||
25 | + </div> | ||
26 | + </div> | ||
27 | + | ||
28 | + <div class="form-group"> | ||
29 | + <div class="col-md-12 text-center"> | ||
30 | + <p><b>The file size shouldn't exceed 10MB</b></p> | ||
31 | + </div> | ||
32 | + </div> | ||
33 | + | ||
34 | + <div class="form-group"> | ||
35 | + <div class="col-md-12"> | ||
36 | + <a href="javascript:void(0)" class="btn btn-raised btn-default">Cancel<div class="ripple-container"></div></a> | ||
37 | + <a href="javascript:void(0)" class="btn btn-raised btn-primary">Submit</a> | ||
38 | + </div> | ||
39 | + </div> | ||
40 | + </fieldset> | ||
41 | + </form> | ||
42 | + <!-- .end Card --> | ||
43 | + </div> | ||
44 | + </div> | ||
45 | + </div> | ||
46 | +</div> | ||
47 | +<!-- EndModal --> | ||
0 | \ No newline at end of file | 48 | \ No newline at end of file |
@@ -0,0 +1,47 @@ | @@ -0,0 +1,47 @@ | ||
1 | +<!-- MODAL CREATE FILE --> | ||
2 | +<div class="modal fade" id="createFileModal" tabindex="-1" role="dialog" aria-labelledby="createFileLabel" 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="createFileLabel">Add File</h4> | ||
8 | + </div> | ||
9 | + <div class="modal-body"> | ||
10 | + <!-- Card --> | ||
11 | + <form class="form-horizontal"> | ||
12 | + <fieldset> | ||
13 | + <div class="form-group is-empty"> | ||
14 | + <label for="inputName" class="col-md-2 control-label">Name</label> | ||
15 | + <div class="col-md-10"> | ||
16 | + <input type="text" class="form-control" id="inputText" placeholder="Name"> | ||
17 | + </div> | ||
18 | + </div> | ||
19 | + | ||
20 | + <div class="form-group is-empty is-fileinput"> | ||
21 | + <label for="inputFile" class="col-md-2 control-label">File</label> | ||
22 | + <div class="col-md-10"> | ||
23 | + <input type="text" readonly="" class="form-control" placeholder="Browse..."> | ||
24 | + <input type="file" id="inputFile" multiple=""> | ||
25 | + </div> | ||
26 | + </div> | ||
27 | + | ||
28 | + <div class="form-group"> | ||
29 | + <div class="col-md-12 text-center"> | ||
30 | + <p><b>The file size shouldn't exceed 10MB</b></p> | ||
31 | + </div> | ||
32 | + </div> | ||
33 | + | ||
34 | + <div class="form-group"> | ||
35 | + <div class="col-md-12"> | ||
36 | + <a href="javascript:void(0)" class="btn btn-raised btn-default">Cancel<div class="ripple-container"></div></a> | ||
37 | + <a href="javascript:void(0)" class="btn btn-raised btn-primary">Submit</a> | ||
38 | + </div> | ||
39 | + </div> | ||
40 | + </fieldset> | ||
41 | + </form> | ||
42 | + <!-- .end Card --> | ||
43 | + </div> | ||
44 | + </div> | ||
45 | + </div> | ||
46 | +</div> | ||
47 | +<!-- EndModal --> | ||
0 | \ No newline at end of file | 48 | \ No newline at end of file |