summaryrefslogtreecommitdiff
path: root/pages/landing.gohtml
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-03-31 18:14:56 +0200
committerewy <ewy0@protonmail.com>2026-03-31 18:14:56 +0200
commit4b082851542cf8b546e3fbacaf0b27a7db5b80eb (patch)
tree93e1e94eb31a7b8ad7273272e680ccd5d2d0948a /pages/landing.gohtml
parentd4e6d4905b1074ebcb6d082fadf50cc2ed80493d (diff)
fix layout and info
Diffstat (limited to 'pages/landing.gohtml')
-rw-r--r--pages/landing.gohtml55
1 files changed, 41 insertions, 14 deletions
diff --git a/pages/landing.gohtml b/pages/landing.gohtml
index ceb55d9..40f5ae3 100644
--- a/pages/landing.gohtml
+++ b/pages/landing.gohtml
@@ -2,30 +2,57 @@
<html lang="en">
<head>
<meta charset="UTF-8">
- <link rel="icon" href="data:," />
+ <link rel="icon" href="data:,"/>
<title>delayed.link</title>
<style>
main {
min-height: 105vh;
}
+
+ label {
+ display: flex;
+ justify-content: space-between;
+ max-width: 500px;
+ }
+
+ input[type="number"] {
+ width: 64px;
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ }
</style>
</head>
<body>
<main>
<form method="POST" action="/">
- <label>
- Lock time in minutes
- <input type="number" name="minutes_in_future"/>
- </label>
- <label>
- Maximum times the link can be opened
- <input type="number" name="number_of_opens" min="1" max="100"/>
- </label>
- <label>
- URL to save for later
- <input type="text" name="payload"/>
- </label>
- <input type="submit" value="Create"/>
+ <div>
+ <label>
+ Lock time in minutes
+ <input type="number" name="minutes_in_future" value="10"/>
+ </label>
+ </div>
+ <div>
+ <label>
+ Maximum times the link can be opened
+ <input type="number" name="number_of_opens" min="1" max="100" value="8"/>
+ </label>
+ </div>
+ <div>
+ <label>
+ URL to save for later
+ <input type="text" name="payload"/>
+ </label>
+ </div>
+ <div>
+ <label>
+ <span></span>
+ <input type="submit" value="Create"/>
+ </label>
+ </div>
</form>
</main>
<footer>