This repository was archived by the owner on Jan 21, 2023. It is now read-only.
forked from hackproductions/bifrost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 3.14 KB
/
index.html
File metadata and controls
65 lines (58 loc) · 3.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>HackQuarantine - Upload File</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,600,700i&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/main.css">
<script src="assets/main.js"></script>
</head>
<body>
<div class="hero container">
<div class="align-self-center w-100">
<div id="main">
<div id="logo" class="row">
<img class="logo" src="assets/logo.png" />
</div>
<div id="upload">
<div id="instructions">
<p>This website is where workshops hosts who have chosen to pre-record their workshop should upload their video file.</p>
<h4>Instructions</h4>
<ol>
<li>Ensure you have formatted your video to the specification on our <a href="https://hackquarantine.com/workshops#send-us-the-prerecorded-video-pre-recorded-only">guide for workshop hosts</a>.</li>
<li>Click the "Browse" button below and choose your video file.</li>
</ol>
<div id="picker" class="input-group">
<div class="custom-file">
<input type="file" class="custom-file-input" id="file-chooser" name="file-chooser">
<label class="custom-file-label" for="file-chooser" id="file-label">Choose file</label>
</div>
</div>
Note: if you need to upload a newer version of your video later on, simply follow the instructions again.
</div>
</div>
</div>
</div>
</div>
<div class="checkered line"></div>
<div id="event-modal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><b id="message-title"></b></h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p id="message"></p>
</div>
</div>
</div>
</div>
</body>
</html>