-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.html
81 lines (78 loc) · 2.94 KB
/
admin.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
<!DOCTYPE html>
<html>
<head>
<title>QuiCue | Admin</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<nav class="nav-justified navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">QuiCue</a>
</div>
</div>
</nav>
<div class="container form-body">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-5">
<div class="panel panel-default">
<div class="panel-body">
<form action="" method="POST" role="form">
<legend>Sign Up</legend>
<div class="form-group">
<select name="" id="_type" class="form-control">
<option value=""> What type of Organization are you?</option>
<option value=""> Police </option>
<option value=""> Hospital </option>
<option value=""> Firefighter </option>
<option value=""> Red Cross </option>
</select><br>
<input type="text" class="form-control" id="_orgName" placeholder="Organization Name"><br>
<input type="text" class="form-control" id="_address" placeholder="Address" required><br>
<input type="text" class="form-control" id="_userName" placeholder="Username" required><br>
<input type="password" class="form-control" id="_password" placeholder="Password" required><br>
<input type="password" class="form-control" id="_confirm" placeholder="Confirm Password" required><br>
<div class="checkbox">
<label>
<input type="checkbox" value=""> I Agree on your Terms and Services
</label>
</div>
</div>
<div class="push-right">
<button type="submit" class="btn btn-primary">Register</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-2">
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-5">
<div class="panel panel-default">
<div class="panel-body">
<form action="" method="POST" role="form">
<legend>Log In</legend>
<div class="form-group">
<input type="text" class="form-control" id="_userName" placeholder="Username" required><br>
<input type="password" class="form-control" id="_password" placeholder="Password" required><br>
<p><span class="glyphicon glyphicon-question-sign"></span><a> Forgot your password</p></a>
</div>
<button type="submit" class="btn btn-primary push-right">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- JQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Javascript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>