This commit is contained in:
cereci5049 2024-06-23 03:04:43 +05:30
parent 360accf11a
commit 80aada9422

28
src/view/login.nimja Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="/public/style.css">
</head>
<body>
<div class="container">
<h1>Welcome Back</h1>
<form action="/login" 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="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<button type="submit">Login</button>
</div>
<p>Don't have an account? <a href="signup.html">Sign Up</a></p>
</form>
</div>
</body>
</html>