This repository was archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.html
134 lines (126 loc) · 4.4 KB
/
form.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="icon" href="../../favicon.ico" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
crossorigin="anonymous"
/>
<title>StuyDevs</title>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd"
crossorigin="anonymous"
></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/noty/3.1.4/noty.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/noty/3.1.4/noty.min.js" type="text/javascript"></script>
<link href="carousel.css" rel="stylesheet" />
</head>
<body>
<div class="navbar-wrapper">
<nav class="navbar navbar-inverse bg-light" style="background-color: #F6BF51;">
<div class="container">
<div class="navbar-header">
<button
type="button"
class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#navbar"
aria-expanded="false"
aria-controls="navbar"
>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">StuyDevs</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/">Home</a></li>
<li><a href="slides.html">Slides</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="form.html">Submit</a></li>
</ul>
</div>
</nav>
</div>
</div>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img
class="first-slide"
style="background-size: contain;"
src="https://images.squarespace-cdn.com/content/v1/57042c07859fd0990acfaad0/1464715564899-7PGZBJTL7M13V31LSCSB/solid+blue+banner.png?format=2500w"
alt="First slide"
/>
<div class="container">
<div class="carousel-caption">
<h1>Homework Submition</h1>
<p>
Upload your homework files from your computer and then submit them to the Stuy
Devs github repo.
</p>
<p>
<p>
(IMPORTANT) Make sure to put this on the first line of your file: <i>username</i>/<i>filename</i>
</p>
<br>
<input type="file" id="hw" name="hw">
<br>
<a class="btn btn-lg btn-primary" role="button"
href="javascript:submit()">
Submit Homework
</a>
</div>
</div>
<script>
function submit(){
const fileField = document.getElementById("hw");
fetch('https://stuydevs-upload.srijal30.repl.co/upload', {
method: 'POST',
body: fileField.files[0]
})
.then(response => response.json())
.then(result => {
new Noty({
type: 'success',
layout: 'topRight',
text: 'Homework Submitted!',
timeout: 10000
}).show();
console.log('Success:', result);
fileField.reset();
})
.catch(error => {
new Noty({
type: 'error',
layout: 'topRight',
text: 'Error: ' + error,
timeout: 10000
}).show();
console.error('Error:', error);
});
}
</script>
</p>
</div>
</div>
</div>
</script>
</body>
</html>