-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (85 loc) · 4.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<title>ParScore Conversion</title>
<head>
<title>ITS ParScore Converter</title>
<link rel="icon" href="bug.png">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link rel="stylesheet"
href="style.css">
</head>
<body>
<main role="main" class="container">
<div id="header">
<a href="http://its.sdsu.edu" class="no-decoration">
<img id="logo" src="logo.png">
</a>
</div>
<!--<div class="alert alert-warning" role="alert">-->
<!--<h4 class="alert-heading"><i class="fas fa-exclamation-triangle"></i> Heads Up!</h4>-->
<!--<p>We are still actively developing this tool, and therefore you might encounter some errors along the way.-->
<!--We have done our best to avoid this, but we too are humans.</p>-->
<!--<hr>-->
<!--<p class="mb-0">Please make sure the number of students in your ParScore roster matches the number of students-->
<!--in your Blackboard course, and the number of NULL scores being uploaded to Blackboard corresponds to number-->
<!--of blanks in your ParScore Roster.</p>-->
<!--</div>-->
<div class="alert alert-info" role="alert">
<h4 class="alert-heading"><i class="fas fa-info-circle"></i> Hi There!</h4>
<p>We developed this new version of the ParScore Conversion Macro based off of feedback from users like you! We
would love to hear what you think of the new tool, and if you experienced any difficulties. We value your
feedback!</p>
<div class="row justify-content-center no-gutters" style="text-align: center">
<div class="col"><a href="https://sdsu.co1.qualtrics.com/jfe/form/SV_38hKgdzr4zbeUGV"
target="_blank"
class="btn btn-outline-info">Let us know what you think! <i
class="fas fa-external-link-alt"></i></a></div>
</div>
</div>
<div style="display: block">
<div id="drop_zone">
<!-- Content set by CSS -->
</div>
</div>
<div id="recents" style="display: none">
<h5 class="mt-3">Recently Converted Files</h5>
<ul id="recent-files"
class="text-muted small">
<!-- Will be filled by handleFileSelect() -->
</ul>
</div>
</main>
<footer class="footer">
<div class="container">
<span>ParScore Conversion Tool - Version <span id="converter-version" class="version">2.0</span></span>
<span class="right"><a href="https://sdsu.co1.qualtrics.com/jfe/form/SV_38hKgdzr4zbeUGV" target="_blank">Report an issue!</a></span>
<span class="right">
<a href="https://github.com/sdsu-its/parscore-macro" target="_blank" class="no-decoration icon" id="github"><i
class="fab fa-github"></i></a>
</span>
</div>
</footer>
<!-- JS Frameworks -->
<script type="text/javascript"
src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript"
src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"
integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh"
crossorigin="anonymous"></script>
<script type="text/javascript"
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ"
crossorigin="anonymous"></script>
<!-- JS Scripts -->
<script type="text/javascript"
src="bower_components/papaparse/papaparse.min.js"></script>
<script type="text/javascript"
src="app.js"></script>
</body>
</html>