BiryaniHub / templates /signup.html
DSatishchandra's picture
Create signup.html
0db9c87 verified
raw
history blame
711 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Signup</title>
</head>
<body>
<h1>Biryani Hub - Signup</h1>
<form method="POST">
<label>Name:</label>
<input type="text" name="name" required><br>
<label>Email:</label>
<input type="email" name="email" required><br>
<label>Phone:</label>
<input type="text" name="phone" required><br>
<label>Password:</label>
<input type="password" name="password" required><br>
<button type="submit">Signup</button>
<p><a href="/">Already have an account? Login here.</a></p>
{% if error %}
<p style="color: red;">{{ error }}</p>
{% endif %}
</form>
</body>
</html>