forked from RCC-MRU/expense-tracker-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/responsive.css">
<!-- Title -->
<title>Expense Tracker</title>
</head>
<body>
<button id="btn-strt" data-bs-toggle="modal" data-bs-target="#frontModal">WELCOME TO EXPENSE TRACKER </button>
<section id="popup">
<div class="modal fade" id="frontModal" tabindex="-1" aria-labelledby="frontModalLabel">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="frontModalLabel">Enter details to continue</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- FORM TO LOGIN -->
<form>
<div class="mb-3">
<label for="input-name" class="form-label">Full Name</label>
<input type="text" class="form-control input-border" id="input-name">
</div>
<div class="mb-3">
<label for="input-amount" class="form-label">Amount</label>
<input type="text" class="form-control input-border" id="input-amount">
</div>
<div class="d-flex justify-content-center">
<button type="button" class="btn btn-custom-primary" id="btn">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>