-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-user.html
143 lines (143 loc) · 6.82 KB
/
new-user.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="vi">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<base href=".">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Quản trị hệ thống</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/admin.css" rel="stylesheet">
<link href="css/introjs.min.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/intro.min.js"></script>
<script type="text/javascript" src="js/admin.js"></script>
<!--Hỗ trợ IE nhận dạng thẻ HTML5-->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><i class="fa fa-cogs"></i> Quản trị hệ thống</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Sang Nguyen<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#"><i class="fa fa-user"></i> Chỉnh sửa tài khoản</a></li>
<li><a href="#"><i class="fa fa-power-off"></i> Đăng xuất</a></li>
</ul>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</nav>
<div class="clearfix">
<div id="sidebar-bg"></div>
<div id="sidebar" role="navigation">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<i class="fa fa-th"></i><span> Danh mục quản lý</span>
<b class="fa fa-plus-sign visible-xs pull-right"></b>
</h3>
</div>
<ul id="menu" class="list-group">
<li class="list-group-item">
<a href="post.html">
<i class="fa fa-edit"></i> <span>Tin tức</span>
</a>
</li>
<li class="list-group-item">
<a href="product.html">
<i class="fa fa-fire"></i><span>Sản phẩm</span>
</a>
</li>
<li class="list-group-item">
<a href="type_product.html">
<i class="fa fa-bars"></i> <span>Loại sản phẩm</span>
</a>
</li>
<li class="list-group-item">
<a href="contact.html">
<i class="fa fa-envelope-o"></i> <span>Phản hồi<span class="badge pull-right">1</span></span>
</a>
</li>
<li class="list-group-item">
<a href="slider.html">
<i class="fa fa-picture-o"></i> <span>Slider</span>
</a>
</li>
<li class="list-group-item">
<a href="user.html">
<i class="fa fa-user"></i> <span>Tài khoản</span>
</a>
</li>
<li class="list-group-item">
<a href="setting.html">
<i class="fa fa-wrench"></i> <span>Cấu hình</span>
</a>
</li>
</ul>
</div>
</div>
<div id="main">
<ol class="breadcrumb">
<li><a href="index.html"><i class="fa fa-home"></i> Trang quản trị</a></li>
<li class="active"><a href="user.html">Tài khoản</a></li>
<li class="active"><a href="new-user.html">Thêm tài khoản mới</a></li>
</ol>
<div class="col-xs-12">
<form id="admin-form" class="form-horizontal col-xl-8 col-lg-9 col-md-10" method="post" action="" role="form">
<input name="id" type="hidden" value="0">
<div class="form-group">
<label for="fullname" class="col-sm-3 control-label required">Tên hiển thị</label>
<div class="col-sm-9">
<input name="fullname" type="text" value="" class="form-control" id="fullname" placeholder="Tên hiển thị" required="" maxlength="255">
</div>
</div>
<div class="form-group">
<label for="email" class="col-sm-3 control-label required">Email</label>
<div class="col-sm-9">
<input name="email" type="email" value="" class="form-control" id="email" placeholder="Email" required="">
</div>
</div>
<div class="form-group">
<label for="pass" class="col-sm-3 control-label required">Mật khẩu</label>
<div class="col-sm-9">
<input name="pass" type="password" value="" class="form-control" id="pass" placeholder="Mật khẩu" required="">
</div>
</div>
<div class="form-group">
<label for="repass" class="col-sm-3 control-label required">Nhập lại mật khẩu</label>
<div class="col-sm-9">
<input name="repass" type="password" value="" class="form-control" id="repass" placeholder="Nhập lại mật khẩu" required="">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<button type="submit" class="btn btn-submit"><small><i class="fa fa-plus"></i></small> Thêm mới</button>
<a class="btn btn-warning" href="#"><small><i class="fa fa-reply"></i></small> Trở về</a>
</div>
</div>
</form>
</div>
</div>
<!--END #main-->
</div>
</body>
</html>