Spaces:
Sleeping
Sleeping
File size: 1,102 Bytes
74957d4 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign-Up Page</title>
<link rel="stylesheet" href="../static/css/styles.css">
</head>
<body>
<div class="container">
<h1>Create Your Account</h1>
<form id="signup-form">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" required>
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter a password" required>
<button type="submit">Sign Up</button>
</form>
<p>Already have an account? <a href="login.html">Login</a></p>
</div>
</body>
</html>
|