generated from comp1800/web_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (96 loc) · 5.02 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<title>Finance Bacon</title>
<meta name="comp1800 template" content="My 1800 App">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="images/green-logo.png">
<!-- Bootstrap Library CSS CDN go here -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Boostrap Library JS CDN go here -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<!-- Other libraries go here -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<!-------------------------------------------------------->
<!-- Firebase 8 Library related CSS, JS, JQuery go here -->
<!-------------------------------------------------------->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.css" />
<!-- Link to styles of your own -->
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<!------------------------------>
<!-- Your HTML Layout go here -->
<!------------------------------>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid" style="margin-bottom:0;">
<a class="navbar-brand" href="#">
<img src="./images/logo.png" alt="Finance Bacon" height="30">
</a>
</div>
<div class="navbar-collapse" style="display: inline; margin-bottom:0;" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" style="color:black;" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-list fs-2"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end">
<li><a class="dropdown-item" href="login.html">Log In</a></li>
<li><a class="dropdown-item" href="login.html">Sign Up</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div id="hero">
<div class="px-4 py-5 mt-0 mb-4 text-center" id="hero-opacity">
<div id="app-logo">
<img class="d-block" src="./images/green-logo.png" alt="" height="70">
</div>
<h1 class="display-4 fw-bold" id="financebacon">Finance Bacon</h1>
<p class="mb-4" id="slogan">Saving your bacon since 2022.</p>
<div class="col-lg-6 mx-auto">
<div class="d-grid gap-3 d-sm-flex justify-content-sm-center">
<a href="login.html" type="button" class="btn btn-primary btn-lg px-4 gap-4">Log In</a>
<a href="login.html" type="button" class="btn btn-secondary btn-lg px-4">Sign Up</a>
</div>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<img src="./images/checkmark.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Track Your Spending</h5>
<p class="card-text">Whenever you spend money, Finance Bacon will instantly create graphs and charts to help you keep track of your spending in one place.</p>
</div>
</div>
<div class="card">
<img src="./images/checkmark.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Track Your Income</h5>
<p class="card-text">Finance Bacon will help you keep track of where your money came from and exactly how much to spend per month.</p>
</div>
</div>
<div class="card">
<img src="./images/checkmark.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Save More Money</h5>
<p class="card-text">Using our budget tools, you can easily set spending limits for yourself and get notified when you are close to going over the spending limit.</p>
</div>
</div>
</div>
<!---------------------------------------------->
<!-- Your own JavaScript functions go here -->
<!---------------------------------------------->
<script src="./scripts/firebaseAPI_TEAM14.js"></script>
</body>
</html>