-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvideo.html
More file actions
98 lines (91 loc) · 4.48 KB
/
video.html
File metadata and controls
98 lines (91 loc) · 4.48 KB
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
92
93
94
95
96
97
98
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>CU Math Society</title>
<meta name="og:title" content="CarletonU Math Society">
<meta name="og:image" content="https://cumathsoc.github.io/images/logo/logo-square.png">
<meta name="og:description"
content="CarletonU Student Math Society dedicated to bringing students and faculty of Mathematics together">
<meta name="keywords" content="CarletonU Math Society, CarletonU, Math, Stats, CUMathSoc">
<meta name="description" content="CarletonU Student Math Society">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="rOqniYc2bAhykxGviu6xy96hSdAlxScfPeYfZqXcX9c" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/png" href="images/logo/logo.png">
<!--I am lazy to make a proper favicon-->
<script charset="utf-8" src="script.js"></script>
<script charset="utf-8" src="scripts/video.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script src="scripts/news.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<script>var videos = {};</script>
<link rel="stylesheet" href="styles/video.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<img src = 'images/tux.png' id = "tux"/>
<header>
<div id="logo"><a href="index.html"><img src="images/logo/logo.png" /></a></div>
<a href="javascript:void(0);" class="hamburger-nav" onclick="toggleMenu()"><i class="fa fa-bars"></i></a>
<h1 id="club-name">CU Math & Stat Society</h1>
<nav id="header-nav">
<a href="index.html">News</a>
<a href="gallery.html">Gallery</a>
<a href="video.html">Videos</a>
<a href="resources.html">Resources</a>
<a href="merch.html">Merch</a>
<a href="about.html">About</a>
</nav>
<nav id="nav-social">
<a href="https://discord.gg/4ttYNMWkVw"><i class="fa-brands fa-discord"></i></a>
</nav>
</header>
<button onclick="toTop()" id="top_btn" title="Go to top">Top</button>
<div class="content">
<h2 class="section-title">Videos</h2>
<div id = 'video-login' class = "video-content">
<h3>LOGIN</h3>
<p>Only Registered members of MathSoc will have access to the videos. Please contact us via <a href = 'https://discord.gg/4ttYNMWkVw'>discord</a> if there are any issues.</p>
<center>
<form action = '' onsubmit='getVideos(videos); return false;'>
<label for = "stud-id">Student Number: </label><input id = "stud-id" name = "stud-id" type = "text" placeholder = "student id" size = '9' pattern="1\d{8}|3\d{8}" title = "Enter your 9 digit student number" required>
<input id = 'submit-id' type = "submit" value = "Enter">
<div id = 'login-error'></div>
</form>
</center>
</div>
<div id = 'current-video' class="video-content">
<p id = "latest-video-tag"><b>Latest:</b> <span id = 'latest-video-title'></span></p>
<div id = "display-video">
<center>
<iframe id = 'video-iframe' src="https://www.youtube-nocookie.com/embed/" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<p id = "video-title"></p>
<div id = 'video-desc'></div>
</center>
</div>
</div>
<div id = 'prev-video' class = "video-content">
<p id = "list-video-tag"><b>Previous Videos:</b></p>
<div id = "list-videos"></div>
</div>
</div>
<footer>
<p>Join CarletonU Math Society on <a href="https://discord.gg/4ttYNMWkVw" onmouseover="showTux()" onmouseout="hideTux()"><i
class="fa-brands fa-discord"></i></a></p>
<div class = "secret">Linux for Life</div>
</footer>
</body>
<script>
piTime();
</script>
</html>