-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (31 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Expense Tracker</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="container mb-3 border border-warning rounded bg-light">
<div class="container ">
<p class="text-warning text-center h4">Expo-Track</p>
<p class="text-center">Your Personal Expense Tracker.</p>
</div>
<form id="userForm">
<label for="name" class="form-label">Choose Expense Ammount</label>
<input type="number" id="name" class="form-control" required>
<label for="email" class="form-label">Choose Description:</label>
<input type="text" id="Description" class="form-control" required>
<label for="phone" class="form-label">Choose Categories:</label>
<input type="text" id="phone" class="form-control" required>
<button type="submit" class="btn btn-warning large my-3 w-100">Add Expense</button>
</form>
</div>
<div class="container mb-3 border border-warning rounded bg-light">
<h2 class="text-warning text-center h4">User List</h2>
<ul id="userList"></ul>
</div>
<script src="script.js"></script>
</body>
</html>