-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.htm
34 lines (32 loc) · 1.27 KB
/
signup.htm
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
<!doctype html>
<html>
<head>
<title>Sign Up</title>
<link rel="icon" href="PDLogo.png">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="loginstyle.css">
</head>
<body>
<center>
<a href="index.htm">
<img src="PDlogo.png" height="70px" width="70px" id="predestinedImg">
<div id="predestinedLink">Predestined</div></a>
<br><br>
<form action="" method="">
<br><br>
<input type="text" size="50" placeholder="Enter your name">
<br><br><br>
<input type="text" size="50" placeholder="Enter your email address">
<br><br><br>
<input type="password" size="50" placeholder="Enter your password" >
<br><br><br>
<input type="password" size="50" placeholder="Enter your password again">
<br><br><br>
<input type="submit" value="Sign Up">
<br><br>
Already have an account? <a href="login.htm">Log In</a>
<br><br>
</form>
</center>
</body>
</html>