summaryrefslogtreecommitdiff
path: root/pages/html/create.gohtml
blob: c08fd93b7cdfefcf16544148496ad5b37a52210e (plain)
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
<!doctype html>
<html lang="en">
<head>
    <title>delayed.link: created</title>
    {{ template "meta" . }}
    {{ template "style" . }}
</head>
<body>
{{ template "header" . }}
<main>
    <div>
        <a href="/l/{{.Id}}">This link will unlock at {{.OpensStr}}</a>
    </div>
    <div>
        It will occur in approximately {{ .MinutesLeft }} minute{{ if gt .MinutesLeft 1 }}s{{end}}.
    </div>
    <div>
        It can be opened {{ .OpensLeft }} time{{ if gt .OpensLeft 1 }}s{{end}}.
    </div>
    <div>
        Be mindful embedding services might take visits off the counter.
    </div>
    <div>
        This page is completely ephemeral. Once you close it, you cannot access the link again.
    </div>
</main>
</body>
</html>