Skip to content

Commit

Permalink
Merge pull request #2 from nathankst350/patch-1
Browse files Browse the repository at this point in the history
Create login.html
  • Loading branch information
kathirvel13 authored Dec 15, 2024
2 parents fbcd7bf + 6e829cd commit 6697e2f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
@@ -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>Student Daily Expense Tracker - Login</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<h2>Student Login</h2>
<form action="/dashboard" method="POST">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
</div>
<button type="submit" class="login-btn">Login</button>
</form>
<div class="register-link">
<p>Don't have an account? <a href="/register">Register here</a>.</p>
</div>
</div>
</body>
</html>

0 comments on commit 6697e2f

Please sign in to comment.