-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
30 lines (29 loc) · 956 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Git Uploader</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
</head>
<body>
<h1 id="logo">GitHup<img src="./img/octocat.png" class="header-img" /></h1>
<p>Unlimited file storage powered by Git(hub)</p>
<div id="file-explorer">
<h1>File list:</h1>
<div id="file-list"></div>
</div>
<div class="wrapper">
<div class="file-upload">
<input type="file" id="file-source" />
<i class="fa fa-arrow-up"></i>
</div>
<div id="status"></div>
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>