-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (61 loc) · 2.67 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
<!doctype html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/6f37e727c4.js" crossorigin="anonymous"></script>
<title>Budget Bestie</title>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<link href="./style/cover.css" rel="stylesheet">
</head>
<body class="d-flex h-100 text-center bg-white">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h3 class="float-md-start mb-0">
<button class="text-dark" style="border: none; padding: 5px; background: none;" onclick="navToIndex()">
Budget Bestie</button>
</h3>
<nav class="nav nav-masthead justify-content-center float-md-end">
<button class="nav-link text-dark" style="border: none; padding: 5px;" onclick="navTosignIn()">Sign
in</button>
<button class="nav-link text-dark" style="border: none; padding: 5px;" onclick="navTosignUp()">Sign
up</button>
</nav>
</div>
</header>
<main class="px-3">
<h1>Yet another budgeting app?</h1>
<p class="lead">You might be thinking: there are a lot of budgeting and receipt scanning apps on the market, so
what makes this one different? Most of the existing products are geared towards expense reporting in the
corporate world, not for your own personal finances! It is always important to keep track of how much you are
spending, not only just when you want to be reimbursed.</p>
</main>
<footer class="mt-auto text-white-50">
</footer>
</div>
<script src="./javascript/amazon-cognito-identity.min.js"></script>
<script src="./javascript/config.js"></script>
<script src="./javascript/app.js"></script>
</body>
</html>