-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (18 loc) · 762 Bytes
/
index.html
File metadata and controls
32 lines (18 loc) · 762 Bytes
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
<html>
<head>
<meta charset="UTF-8">
<title>{{.Name}}</title>
</head>
<body>
<h1>{{.Name}}</h1>
<h2>What is this service?</h2>
<p>This is a service where you can upload your files, pay bitcoins (we use coinbase for the free microtransactions, but you can use a normal bitcoin address) and they stay around with no more payments for ever.</P>
<h2>Price:</h2>
<p>The price is {{.BasePrice}} satoshis per megabyte, rounded up to {{.MinimumPrice}} satoshis if the total is lower than that, and adjusted to whatever the actual usage is.</p>
<h2>Upload your file:</h2>
<form action="upload" method="POST" enctype="multipart/form-data" name="file">
<input type="file" name="file">
<input type="submit" name="submit">
</form>
</body>
</html>