-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
96 lines (70 loc) · 4.04 KB
/
signup.php
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
<!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 -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>1stAmendment - Peaceful Protests</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="bootstrap/css/cover.css" rel="stylesheet">
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">1stAmendment</h3>
<!--Navigation Bar-->
<nav>
<ul class="nav masthead-nav">
<li><a href="index.php">Home</a></li>
<li><a href="list.php">Protests</a></li>
<li class="active"><a href="signup.php">Sign Up</a></li>
</ul>
</nav>
</div>
<div class="inner cover">
<!--TODO: 1stAmendment Sign Up Registration Form-->
<h1 class="cover-heading">Registration</h1>
<form action="" method="post">
<div class="form-group">
<label for="firstName">First Name</label>
<input type="text" class="form-control" name="firstname" placeholder="Jane">
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input type="text" class="form-control" name="lastname" placeholder="Doe">
</div>
<div class="form-group">
<label for="emailAddress">Email Address</label>
<input type="email" class="form-control" name="emailAddress" placeholder="[email protected]"
</div>
<div class="form-group">
<label for="userName">User Name</label>
<input type="text" class="form-control" name="userName" >
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" name="password" >
</div>
<div class="form-group">
<label for="verifyPassword">Verify Password</label>
<input type="password" class="form-control" name="verifyPassword" >
</div>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</div>
</div>
</div>
</div>
</html>