31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!-- This file is serving as the template for the options page -->
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="css/styles.css" />
|
|
<link rel="stylesheet" href="css/options.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="version-container">
|
|
<p class="version">(v<span id="version"></span>)</p>
|
|
</div>
|
|
<div class="card options-card" id="header">
|
|
<h2 class="options-header"><u>Options</u></h2>
|
|
<div id="options_container"></div>
|
|
<p class="creator-tag"><a href="https://sghsri.github.io">Sriram Hariharan</a> (2018)</p>
|
|
</div>
|
|
<div class="card options-card" id="contributors_container">
|
|
<h3 class="contributor-title">Amazing people who've contributed to the extension!</h3>
|
|
<p class="creator-tag open-source-tag">Code is open source here <a href="https://github.com/sghsri/UT-Registration-Plus">here</a> :)</p>
|
|
<div id="contributor-list"></div>
|
|
</div>
|
|
<script src="js/config.js"></script>
|
|
<script src="js/lib/jquery-3.3.1.min.js"></script>
|
|
<script src="js/util.js"></script>
|
|
<script src="js/Template.js"></script>
|
|
<script src="js/options.js"></script>
|
|
</body>
|
|
</html>
|