diff options
Diffstat (limited to 'pages/html/create.gohtml')
| -rw-r--r-- | pages/html/create.gohtml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pages/html/create.gohtml b/pages/html/create.gohtml new file mode 100644 index 0000000..c08fd93 --- /dev/null +++ b/pages/html/create.gohtml @@ -0,0 +1,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>
\ No newline at end of file |
