Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Tayyaba 03 vue2 #166

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
question 25 - added fields, dates, and crops
  • Loading branch information
jadoont committed Apr 22, 2024
commit ade1f79793c26c89f149f481d86a7b46da36d72c
17 changes: 16 additions & 1 deletion farmdata2/farmdata2_modules/fd2_school/html.html
Original file line number Diff line number Diff line change
@@ -35,6 +35,22 @@ <h1>Harvest Report</h1>
<hr>
<h2>Harvest Report Form</h2>
<form>
<label for="crop">Crop:</label>
<select id="crop" name="crop">
<option value="broccoli">Broccoli</option>
<option value="kale" selected>Kale</option>
<option value="peas">Peas</option>
</select><br><br>
<label for="field">Area:</label>
<select id="field" name="field">
<option value="all" selected>All</option>
<option value="chuau-1">Chuau-1</option>
<option value="sq7">SQ7</option>
</select><br><br>
<label for="startDate">Start Date:</label>
<input type="date" id="startDate" name="startDate" min="2014-01-01" max="2022-01-01" value="2020-05-05"><br><br>
<label for="endDate">End Date:</label>
<input type="date" id="endDate" name="endDate" min="2020-05-05" max="2022-01-01" value="2020-05-15"><br><br>
<label for="title">Title:</label><br>
<input type="text" id="title" name="title"><br><br>
<input type="submit" value="Generate Report">
@@ -44,4 +60,3 @@ <h2>Actual Report</h2>
</body>
</html>