-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
23 lines (23 loc) · 955 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Retro-Facebook | Signup</title>
<link rel="stylesheet" href="css/signup.css">
</head>
<body>
<div class="signup-container">
<h1>Sign Up for Facebook</h1>
<form action="profile.html" method="post">
<input type="text" name="first_name" placeholder="First Name" required>
<input type="text" name="last_name" placeholder="Last Name" required>
<input type="email" name="email" placeholder="Email Address" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">
<a href="index.html">Sign Up</a></button>
</form>
<p>By signing up, you agree to our <a href="#">Terms of Service</a> and <a href="#">Privacy Policy</a>.</p>
</div>
</body>
</html>