-
Notifications
You must be signed in to change notification settings - Fork 11
/
match.html
59 lines (43 loc) · 1.83 KB
/
match.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
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<title>MUSTANG MATCH</title>
<link href='http://fonts.googleapis.com/css?family=Qwigley' rel='stylesheet' type='text/css'>
<link href='css/match.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="stitched h1_height">
<h1> Mustang Match</h1>
</div>
<div class="stitched margin_twenty">
<p>This is a matching service provided by the MHS Byte Club. It is a matching service that matches one MHS student to another.</p>
<p id=survey_takers></p>
<script>
var linecount = 0;
$.get( "/matchresponses.csv", function( data ) {
linecount = data.split("\n").length - 2;
console.log(linecount);
document.getElementById("survey_takers").innerHTML = "Number of people who have taken the survey: " + linecount;
});
</script>
<p>Remember to get your friends to take the survey.</p>
<div class="above_xmas">
<a class="underline" href="https://goo.gl/yE1aTN">Take the survey here!!</a>
<br><br>
<a class="underline" href="http://www.mhsbyte.org/match_results.html">View your results here!! (Starting 2/10/16)</a>
<br><br>
</div>
<br><br>
<p> Results from the survey will available to be seen by the MHS Byte Club and a person who matches with you will be able to see your name.</p>
<!--<div class="stitched margin_twenty">
<p>Results will be available starting February 10th, 2016. Tell your friends! The more results, the better the matches.</p>
<a class="underline" href="http://www.mhsbyte.org/match_results.html">View your results here!! (Starting 2/10/16)</a>
</div> -->
<br><br><br><br>
</div>
<canvas id="xmas"></canvas>
<!-- heart snow code -->
<script src="js/letitsnow.js"></script>
</body>
</html>