-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.html
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathadmin.html
File metadata and controls
52 lines (52 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container" style="text-align: center">
<div class="jumbotron">
<h1>The Neighbourhood</h1>
</div>
</div>
</header>
<div class="container-fluid text-center" style="text-align: center">
<h2>Admin Section</h2>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 col-sm-offset-3">
<form>
<div class="form-group">
<label for="usrname">Username:</label>
<input type="text" class="form-control" id="username">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password">
</div>
<div class="checkbox">
<label><input type="checkbox"> Remember me</label>
</div>
<div>
<button type="submit" id="login" class="btn btn-success">Submit</button>
<button type="submit" id="goBack" class="btn btn-success" >Back</button>
</div>
<br/><br/>
<div>
<a href="admin-create-user.html" type="submit" class="btn btn-success">Sign Up</a>
</div>
</form>
</div></div>
<br><br><br><br><br>
<div data-include="footer.html"></div>
</div>
</body>
</html>