-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload-file.html
52 lines (49 loc) · 2.65 KB
/
upload-file.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
<!doctype html>
<html>
<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="The Nudge - Gamification Website">
<meta name="title" property="og:title" content="The Nudge - Gamification Website">
<meta name="image" property="og:image" content="The Nudge - Gamification Website">
<meta name="description" property="og:description" content="The Nudge: Upload File">
<link rel="stylesheet" href="/index.css">
<link href='' rel='shortcut icon' type='image/x-icon' />
<title>The Nudge - Gamification Website</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body class="body">
<div class="container-fluid px-0">
<nav class="navbar navbar-light bg-light pl-2">
<p class="ml-2 mb-0">
<span class="navbar-brand mb-0 h1">The Nudge</span>
</p>
</nav>
</div>
<div class="container ">
<div class="row">
<div class="col-12">
<h1 class="mt-5 text-center">Upload File Here</h1>
<input type="file" id="myfile" name="myfile" accept=".csv">
<button type="button" id="submitCsv" class="btn btn-light btn-lg btn-block text-center mt-4">Upload</button>
<div id="loading" style="display: none;">
<div class="loader"></div>
</div>
<div id="success" class="text-center" style="display: none;">
<h5>
DONE!!!
</h5>
</div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script type="module" src="/upload-file.js"></script>
</html>