82 lines
3.0 KiB
HTML
82 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z5B0S1WMC4"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() { dataLayer.push(arguments); }
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-Z5B0S1WMC4');
|
|
</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>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js">
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="bg"></div>
|
|
<div class="bg-text" value="">
|
|
<h1>About</h1>
|
|
<p>
|
|
This is a database tool to assist students of the University of Texas - Austin in the biannual race for
|
|
Jazz Appr- I mean course registration process.
|
|
</p>
|
|
<p>
|
|
I noticed other grade sites used outdated data, so I made
|
|
my own. Enjoy!
|
|
</p>
|
|
</div>
|
|
<div class="bg-form">
|
|
<p>
|
|
Keep course names as close to the
|
|
<a href="https://registrar.utexas.edu/schedules">official course name</a>
|
|
as possible
|
|
</p>
|
|
<br>
|
|
<form action="">
|
|
|
|
<!-- Data is separated into course number, course prefi;x, and course name-->
|
|
<label for="courseField">Department (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" required><br><br>
|
|
<label for="courseName">Course Name (Optional, useful for precision Ex: "Jazz Appreciation"):</label>
|
|
<input type="text" id="courseName" name="fname"><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>
|
|
|
|
<!-- Dropdown menu for semester selection -->
|
|
<form>
|
|
<label for="dropdown">Semester (under construction):</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="chart-container" id="grades" value="invisible" style="position: relative; height:40vh; width:80vw">
|
|
<!--Bar graph stuff-->
|
|
<canvas id="gradeBar" style="width:100%;height:100%;"></canvas>
|
|
</div>
|
|
</div>
|
|
<footer>Created by Derek Chen
|
|
<!-- because VAPA lecture was a bit boring that day -->
|
|
</footer>
|
|
|
|
<script src='main.js'></script>
|
|
</body>
|
|
|
|
</html> |