This commit is contained in:
cereci5049 2024-06-23 03:05:06 +05:30
parent 80aada9422
commit ed12611b98

32
src/view/signup.nimja Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="/public/style.css">
</head>
<body>
<div class="container">
<h1>Create Your Account</h1>
<form action="/signup" method="post">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<button type="submit">Sign Up</button>
</div>
<p>Already have an account? <a href="index.html">Login</a></p>
</form>
</div>
</body>
</html>