-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
27 lines (24 loc) · 1004 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<link rel="stylesheet" href="signup.css"> <!-- Link to your CSS -->
</head>
<body>
<div class="signup-container">
<h2>Create an Account</h2>
<form action="signup.php" method="POST">
<label for="username">Username</label>
<input type="text" id="username" name="username" required placeholder="Enter your username">
<label for="email">Email</label>
<input type="email" id="email" name="email" required placeholder="Enter your email">
<label for="password">Password</label>
<input type="password" id="password" name="password" required placeholder="Enter your password">
<input type="submit" value="Sign Up">
</form>
<p>Already have an account? <a href="login.php">Log in here</a></p>
</div>
</body>
</html>