-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
42 lines (42 loc) · 1.5 KB
/
signup.php
File metadata and controls
42 lines (42 loc) · 1.5 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
<html>
<head>
<title>SignUp</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<h2 id="header" class="loginform">Sign up</h2>
</div>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4">
<form name="loginform">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" class="form-control" id="username"/>
</div>
<div class="form-group">
<label for="Email Address">Email address:</label>
<input type="email" class="form-control" id="Email Address"/>
</div>
<p>we will never share your id with anyone else</p>
<div class="form-group">
<label for="Password">Password:</label>
<input type="password" class="form-control" id="Password">
</div>
<div class="form-group">
<label for="Password">Re-enter Password:</label>
<input type="password" class="form-control" id="Password">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Submit</button>
<button type="reset" class="btn btn-primary">Reset</button>
<a href="login.php"><button type="button" class="btn btn-success">Go Back</button></a>
</div>
</form>
</div>
</div>
</div>
</body>
</html>