You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<script type="text/javascript" src="https://d3js.org/d3.v7.min.js"></script>
|
|
<script type="text/javascript" src="/app.js"></script>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<h1>Outcomes Tracker</h1>
|
|
<p>See how instances did in comparisson to others</p>
|
|
<section>
|
|
<h2>The Graph</h2>
|
|
<dl>
|
|
<dt>X-Axis:</dt>
|
|
<dd>Graduation Date</dd>
|
|
<dt>Y-Axis:</dt>
|
|
<dd>Percentage of graduates that got a job within 90 days of graduation.</dd>
|
|
</dl>
|
|
<svg id="container">
|
|
<svg>
|
|
<g id="points"></g>
|
|
</svg>
|
|
</svg>
|
|
</section>
|
|
<section>
|
|
<h2>Choose Instances To Highlight</h2>
|
|
<form>
|
|
<input type="text" placeholder="Insance ID"/>
|
|
<input type="submit"/>
|
|
</form>
|
|
</section>
|
|
<section>
|
|
<h2>Instance Details</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td>Instance ID</td>
|
|
<td>Course</td>
|
|
<td>Graduation Date</td>
|
|
<td>Total Students</td>
|
|
<td>Dropped</td>
|
|
<td>Graduates</td>
|
|
<td>Outcomes After 90 Days</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</html>
|