-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
40 lines (29 loc) · 1014 Bytes
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PN - SignUp</title>
<link rel="shortcut icon" type="image" href="">
<link rel="stylesheet" href="signup.css">
<link rel="icon" type="image/x-icon" href="img/pnw-rbg.png">
</head>
<body>
<div class="row">
<div class="col-md-12">
<form action="HomePage.html">
<h1> Sign Up </h1>
<fieldset>
<legend><span class="number">~</span>New here? Make a new account!</legend>
<br>
<label for="email">Email:</label>
<input type="email" id="mail" name="user_email">
<label for="password">Password:</label>
<input type="password" id="password" name="user_password">
</fieldset>
<p>Already have an account? <span><a href="login.html">Login Instead!</a></span></p>
<button class="button" type="submit" href="HomePage.html">Sign Up</button>
</form>
</div>
</div>
</body>
</html>