-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lewis & Clark College Video Compressor Service</title>
<meta charset="utf-8">
<link href="compressor.css" type="text/css" rel="stylesheet">
<script src="siteJS.js"></script>
<link rel="icon" type="image/x-icon" href="usedMedia/favicon.ico">
</head>
<body>
<div class="header">
<img src="usedMedia/CompressionHeader.png" alt="Compression Logo" style="width:100%;">
<div class="Header_Text">LC Video Compression</div>
</div>
<div class="bodyParagraphs">
<div class="paragraph">
<p class="blurb">
Welcome to the Lewis & Clark College Video Compression Service!
Please upload the video(s) you would like to be compressed.<br>
Once the compression is completed, you will receive an email with a link to download the compressed videos.
</p>
</div>
<div class="paragraph">
<form action="comp.php" method="post" enctype="multipart/form-data">
<p>Please enter your name and email:</p>
<p>
<input type="text" id="fName" name="f_name" size="30" required placeholder="first name"><br>
<input type="text" id="lName" name="l_name" size="30" required placeholder="last name"><br>
<input type="email" id="email" name="e_mail" size="30" required placeholder="email" pattern="[^@\s]+@[^@\s]+\.[^@\s]+" title="Invalid email address">
</p>
<p>Select video to upload:</p>
<p>
<input type="file" id="video" name="video" accept="video/*">
</p>
<p>Please select your due date:</p>
<p>
<input type="radio" id="choose" name="choose_date" value="choose">
<label for="choose"><input type="date" name="date_due" id="dateDue" min=""></label><br>
<input type="radio" id="asap" name="choose_date" value="asap">
<label for="asap">ASAP</label>
</p>
<p>Please select your desired file size for the completed compressed video:</p>
<p>
<input type="radio" id="small" name="desired_size" value="small">
<label for="small">Small</label><br>
<input type="radio" id="medium" name="desired_size" value="medium">
<label for="medium">Medium</label><br>
<input type="radio" id="large" name="desired_size" value="large">
<label for="large">Large</label>
</p>
<p>
<input type="submit" value="Submit" id="originalSubmit" class="submit" onclick="sendEmail();">
</p>
</form>
</div>
</div>
</body>
</html>