Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
lab8/index.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50 lines (38 sloc)
1.46 KB
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Study Group Finder</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<form id="preferencesForm"> | |
<label for="major">Major:</label> | |
<select id="major" name="major"> | |
</select> | |
<label for="courses">Courses:</label> | |
<select id="courses" name="courses"> | |
</select> | |
<label for="studyDay">Study Day:</label> | |
<select id="studyDay" name="studyDay"> | |
<option value="Monday">Monday</option> | |
<option value="Tuesday">Tuesday</option> | |
<option value="Wednesday">Wednesday</option> | |
<option value="Thursday">Thursday</option> | |
<option value="Friday">Friday</option> | |
<option value="Saturday">Saturday</option> | |
<option value="Sunday">Sunday</option> | |
</select> | |
<label for="studyStartTime">Start Time:</label> | |
<input type="time" id="studyStartTime" name="studyStartTime"> | |
<label for="studyEndTime">End Time:</label> | |
<input type="time" id="studyEndTime" name="studyEndTime"> | |
<label for="groupSize">Group Size:</label> | |
<input type="number" id="groupSize" name="groupSize"> | |
<button type="submit">Find Study Groups</button> | |
</form> | |
<div id="resultsSection"></div> | |
<script src="app.js"></script> | |
</body> | |
</html> |