-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
39 lines (36 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PasteDat</title>
<link rel="stylesheet" href="main.min.css"/>
</head>
<body>
<main>
<p class="help">
<strong>Share files secretly.</strong> Add files and share the secret URL. Your recipient will download the files directly from your computer.
</p>
<div class="files-info">
<label for="title">Title</label>
<input disabled name="title" placeholder="Title (optional)" />
<label for="description">Description</label>
<input disabled name="description" placeholder="Description (optional)" />
</div>
<!-- file forms are added here -->
<div id="forms-container"></div>
<footer>
<div class="info">
<a href="https://github.com/taravancil/paste-dat">View source</a>
• Made by
<a href="https://twitter.com/taravancil/">Tara Vancil</a>
</div>
<div class="actions">
<button disabled type="button" id="add-file">Add file +</button>
<button disabled type="button" id="submit" class="primary">Create</button>
</div>
<p id="message"></p>
</footer>
</main>
<script src="/index.build.js"></script>
</body>
</html>