-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
29 lines (27 loc) · 955 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" media="screen" href="style.css" />
<title>Simple File Share</title>
</head>
<body>
<h1>Simple File Share</h1>
<h2>With Electron</h2>
<form action="#">
<div class="input-file-container">
<input class="input-file" id="my-file" type="file">
<label tabindex="0" for="my-file" class="input-file-trigger">Select a file...</label>
</div>
<p class="file-return"></p>
<p class="share-link"></p>
</form>
<h3 id="note"></h3>
<p class="txtcenter copy">Made by <a target="_blank" href="https://github.com/lleellee0/">Foorogrammer</a><br>
Design by <a target="_blank" href="https://twitter.com/geoffrey_crofte">@geoffrey_crofte</a></p>
<script>
// You can also require other files to run in this process
require('./functions.js');
</script>
</body>
</html>