Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Samdrea Hsu authored and Samdrea Hsu committed Jun 7, 2024
1 parent 99715fe commit 52293bb
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions EnterExpense.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>Expense Tracker</title>
</head>
<body>
<h2>Expense Entry Form</h2>
<form id="expenseForm" action="https://script.google.com/macros/s/AKfycbzALyuE2KNxMQBhjBZLXgiEKI97QEd2yG5-ReP5j5y0SJw7wvf0qmFMoIeE6XXrP-U/exec" method="post">
<label for="date">Date:</label>
<input type="date" id="date" name="date"><br><br>

<label for="category">Category:</label>
<select id="category" name="category">
<option value="Rent">Rent</option>
<option value="Groceries">Groceries</option>
<option value="Personal Expenses">Personal Expenses</option>
<option value="Transportation">Transportation</option>
<option value="Tuition">Tuition</option>
<option value="Books and Supplies">Books and Supplies</option>
<option value="Other">Other</option>
<!-- Add more options as needed -->
</select><br><br>

<label for="amount">Amount:</label>
<input type="number" id="amount" name="amount"><br><br>

<label for="note">Note:</label>
<textarea id="note" name="note"></textarea><br><br>

<input type="submit" value="Submit">
</form>
</body>
</html>

0 comments on commit 52293bb

Please sign in to comment.