-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathformadduser.hbs
executable file
·49 lines (44 loc) · 1.34 KB
/
formadduser.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{#content "head"}}
{{> head}}
{{/content}}
{{#content "nav"}}
{{> nav}}
{{/content}}
{{#content "page"}}
<script>
//<![CDATA[
$(document).ready(function(){
$("[data-mask]").inputmask();
});
</script>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Users management
</h1>
<ol class="breadcrumb">
<li><a href="/index"><i class="fa fa-home"></i> Home</a></li>
<li><a href="#">Users management</a></li>
<li class="active">Create</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-12">
<!-- About Me Box -->
<div class="box box-primary">
<div class="box-body">
{{> formsignin}}
</div><!-- /.box-body -->
</div><!-- /.box -->
</div><!-- /.col -->
</div><!-- /.row -->
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
{{/content}}
{{#content "footer"}}
{{> footer}}
{{/content}}