Skip to content
Permalink
main
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
<!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>