-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |