-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5fe71e
commit 9571d09
Showing
3 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |