Files
ut-grade-distribution-viewer/index.html
2023-04-19 13:50:30 -05:00

64 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W7VZNW3G14"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-W7VZNW3G14');
</script>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>UT Grade Viewer</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.4.1/papaparse.min.js"
integrity="sha512-dfX5uYVXzyU8+KHqj8bjo7UkOdg18PaOtpa48djpNbZHwExddghZ+ZmzWT06R5v6NSk3ZUfsH6FNEDepLx9hPQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div class="bg"></div>
<div class="bg-text">
<p>In lecture one day I noticed the other sites were using outdated data sets from <2020, so I made my own. Enjoy!</p>
<p>
Keep course names as close to the
<a href="https://registrar.utexas.edu/schedules">official course name</a>
as possible
</p>
<form action="">
<!-- Data is separated into course number, course prefi;x, and course name-->
<label for="courseField">Course Prefix (Ex: "MUS"):</label>
<input type="text" id="courseField" name="fname" required><br><br>
<!-- <label for="courseNum">Course Number (Ex: "307"):</label>
<input type="text" id="courseNum" name="fname"><br><br> -->
<label for="courseName">Course Name (Ex: "Jazz Appreciation"):</label>
<input type="text" id="courseName" name="fname" required><br><br>
<label for="courseInstructor">Instructor (Optional)</label>
<input type="text" id="courseInstructor" name="fname"><br><br>
<button type="button" id="subBut">Submit</button><br><br>
<form>
<label for="dropdown">Semester (work in progress):</label>
<select id="dropdown" name="dropdown">
<option value="option1">Fall 2022</option>
<option value="option2">Spring 2022</option>
<option value="option3">Fall 2021</option>
</select>
<br><br>
</form>
</form>
<div class = "table">
</div>
</div>
<script src='main.js'></script>
</body>
</html>