-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
68 lines (63 loc) · 2.45 KB
/
login.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="./favicon_io/android-chrome-512x512.png" sizes="64x64">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./login.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.css">
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<title>Finance Tracker - A Personal Finance App</title>
</head>
<body>
<!-- <header class="header-part"> -->
<nav>
<div class="navbar">
<a href="#" class="logo"><i class="fas fa-chart-line"></i> Finance Tracker</a>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<!-- <li><a href="">Use Tracker</a></li> -->
<!-- <li><a href="#how-it-works">How it works</a></li>
<li><a href="#">Support</a></li> -->
</ul>
<div class="buttons">
<a href="./sign-up.html" class="btn-head"><i class="fas fa-user-plus"></i> Sign Up</a>
</div>
<!-- <div class="menu-toggle">
<i class="fas fa-bars"></i>
</div> -->
</div>
</nav>
<div class="container">
<form class="login-form" action="/login" method="post">
<h2>Login</h2>
<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">
<a href="/forgot-password">Forgot Password?</a>
</div>
<button type="submit">Login</button>
</form>
</div>
<footer>
<div class="footer">
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</footer>
<script>feather.replace();</script>
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/your-font-awesome-kit.js" crossorigin="anonymous"></script>
</body>
</html>