-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Expenses Bot (beta)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Add Transaction</h2>
<form id="transaction-form">
<div class="form-group">
<label for="type">Type:</label>
<input type="text" class="form-control" id="type" name="type">
</div>
<div class="form-group">
<label for="category">Category:</label>
<input type="text" class="form-control" id="category" name="category">
</div>
<div class="form-group">
<label for="amount">Amount:</label>
<input type="number" class="form-control" id="amount" name="amount">
</div>
<div class="form-group">
<label for="date">Date:</label>
<input type="date" class="form-control" id="date" name="date">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>