Skip to content

Commit

Permalink
Create sign up page
Browse files Browse the repository at this point in the history
  • Loading branch information
kathirvel13 committed Dec 15, 2024
1 parent c5fe71e commit 9571d09
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ <h1>Personal Finance Tracker for Students</h1>
<li><a href="#log-expenses">Log Expenses</a></li>
<li><a href="#savings-goals">Savings Goals</a></li>
<li><a href="login">Log In</a></li>
<li><a href="register">Sign Up</a></li>
</ul>
</nav>
</header>
Expand Down
3 changes: 2 additions & 1 deletion login.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ <h1>Personal Finance Tracker for Students</h1>
<li><a href="/Knight_Coders/#log-expenses">Log Expenses</a></li>
<li><a href="/Knight_Coders/#savings-goals">Savings Goals</a></li>
<li><a href="login">Log In</a></li>
<li><a href="register">Sign Up</a></li>
</ul>
</nav>
</header>
Expand All @@ -33,7 +34,7 @@ <h1>Student Login</h1>
<button type="submit" class="submit-btn">Login</button>
</form>
<div class="container">
<p>Don't have an account? <a href="register">Register here</a>.</p>
<p>Don't have an account? <a href="register">Sign Up here</a>.</p>
</div>
</section>
</body>
Expand Down
49 changes: 49 additions & 0 deletions register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!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>
<!-- Header -->
<header>
<h1>Personal Finance Tracker for Students</h1>
<nav>
<ul>
<li><a href="/Knight_Coders/#log-expenses">Log Expenses</a></li>
<li><a href="/Knight_Coders/#savings-goals">Savings Goals</a></li>
<li><a href="login">Log In</a></li>
<li><a href="register">Sign Up</a></li>
</ul>
</nav>
</header>
<!-- Login Form -->
<section class="container">
<h1>Student Signup</h1>
<form action="/Knight_Coders/" 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="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="password1">Enter Password</label>
<input type="password" id="password" name="password1" placeholder="Enter your password" required>
</div>
<div class="form-group">
<label for="password2">Confirm Password</label>
<input type="password" id="password" name="password2" placeholder="Re-enter your password" required>
</div>
<button type="submit" class="submit-btn">Sign Up</button>
</form>
<div class="container">
<p>Already have an account? <a href="login">Log In</a>.</p>
</div>
</section>
</body>
</html>

0 comments on commit 9571d09

Please sign in to comment.