-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
149 lines (136 loc) · 5.41 KB
/
user.html
File metadata and controls
149 lines (136 loc) · 5.41 KB
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
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>AlphaCMS: Add User</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="../../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="../../assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" 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="#">AlphaCMS</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html">Dashboard <span class="sr-only">(current)</span></a></li>
<li><a href="pages.html">Pages</a></li>
<li><a href="categories.html">Categories</a></li>
<li><a href="users.html">Users</a></li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input class="form-control search-form" placeholder="Search" type="text">
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">My Account <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Profile</a></li>
</ul>
</li>
<li><a href="login.html">Log out</a></li>
</ul>
</div>
</div>
</nav>
<section>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="list-group">
<a href="index.html" class="list-group-item"><i class="glyphicon glyphicon-dashboard"></i> Dashboard</a>
<a href="pages.html" class="list-group-item"><i class="glyphicon glyphicon-file"></i> Pages</a>
<a href="categories.html" class="list-group-item"><i class="glyphicon glyphicon-folder-open"></i> Categories</a>
<a href="users.html" class="list-group-item"><i class="glyphicon glyphicon-user"></i> User Accounts</a>
</div>
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<h1 class="page-header"><i class="glyphicon glyphicon-user"></i> Add User</h1>
</div>
</div>
<ol class="breadcrumb">
<li><a href="index.html">Dashboard</a></li>
<li><a href="users.html">Users</a></li>
<li class="active">New User</li>
</ol>
<form>
<div class="form-group">
<label>User Name</label>
<input type="text" class="form-control" placeholder="name">
</div>
<div class="form-group">
<label>User Email</label>
<input type="email" class="form-control" placeholder="email">
</div>
<div class="form-group">
<label>User Bio</label>
<textarea class="form-control" placeholder="bio"></textarea>
</div>
<div class="form-group">
<label>User Avatar</label>
<input type="file">
<p class="help-block">Max Size: 4MB</p>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
</section>
<footer>
<p>Copyright Me© 2015</p>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.js"></script>
<script src="js/jquery.tablesorter.js"></script>
<script>
$(function() {
$('#sort-table').tablesorter({
sortList: [[0,0], [1,0]]
});
});
</script>
<script>
var $rows = $('table tr');
$('.search-form').keyup(function() {
var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase(); // $(this) for table tr
$rows.show().filter(function() {
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
return !~text.indexOf(val);
}).hide();
});
</script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>