forked from acmucsd/hackschool-fa22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreatePurchase.html
44 lines (44 loc) · 1.62 KB
/
createPurchase.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Finance Buddy Add Purchaselolllllll</title>
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="navbar">
<div class="title">
<h1>Finance Buddylollll</h1>
<a href="index.html"></a>
</div>
<div class="nav-buttons">
<a href="createPurchase.html">Add New Purchasesss</a>
<a href="viewPurchases.html">View All Purchases</a>
</div>
</div>
<form class="create-page">
<div class="finance-form">
<h2>Log a Purchase</h2>
<div class="form-row">
<label for="name">Purchase Name</label>
<input id="name" name="name" required></input>
</div>
<div class="form-row">
<label for="desc">Purchase Amount</label>
<input type="number" id="desc" name="desc" required></input>
</div>
<div class="form-row">
<label for="type1">Purchase Type</label>
<select id="type1" name="type1">
<option>Cash</option>
<option>Credit</option>
<option>Debit</option>
<option>Check</option>
<option>Crypto</option>
</select>
</div>
<input type="submit" value="Submit"></input>
</div>
</form>
</body>
</html>