-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
41 lines (41 loc) · 1.06 KB
/
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
41
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>PTN real estate - Signup</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="center">
<form action="login.html">
<h1>Sign Up</h1>
<form method="post">
<div class="txt_field">
<input type="text" required>
<span></span>
<label>First name</label>
</div>
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Last name</label>
</div>
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Email</label>
</div>
<div class="txt_field">
<input type="password" required>
<span></span>
<label>Password</label>
</div>
<input type="submit" value="Sign Up">
<div class="signup_link">
I am already a member! <a href="login.html">Login</a>
</div>
</form>
</div>
</form>
</body>
</html>