nagasurendra's picture
Create signup.html
74957d4 verified
<!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>