summaryrefslogtreecommitdiff
path: root/result.html
diff options
context:
space:
mode:
authorMarin Ivanov <[email protected]>2026-01-17 03:07:06 +0200
committerMarin Ivanov <[email protected]>2026-01-17 03:07:06 +0200
commit044ad65b3e9b6169741e237d4ad04406b4875c13 (patch)
treea54738000bb3030f3d8792490569ca88f0f69c11 /result.html
parentdcec8b701f13bd7510423985aa2e570e4b425390 (diff)
combine result and form into single template
Diffstat (limited to 'result.html')
-rw-r--r--result.html87
1 files changed, 0 insertions, 87 deletions
diff --git a/result.html b/result.html
deleted file mode 100644
index 91c94cf..0000000
--- a/result.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Gloginki</title>
-
- <style>
- :root {
- --bg: #f6f8fa;
- --card-bg: #ffffff;
- --border: #d0d7de;
- --text: #24292f;
- --muted: #57606a;
- --primary: #2da44e;
- --primary-hover: #2c974b;
- --danger: #cf222e;
- --radius: 6px;
- }
-
- * {
- box-sizing: border-box;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
- Helvetica, Arial, sans-serif;
- }
-
- body {
- margin: 0;
- padding: 2rem;
- background: var(--bg);
- color: var(--text);
- }
-
- h1 {
- margin-bottom: 1rem;
- font-size: 1.6rem;
- }
-
- .container {
- max-width: 900px;
- margin: 0 auto;
- }
- form {
- background: var(--card-bg);
- border: 1px solid var(--border);
- border-radius: var(--radius);
- padding: 1.5rem;
- margin-bottom: 2rem;
- }
-
- fieldset {
- border: 1px solid var(--border);
- border-radius: var(--radius);
- padding: 1rem;
- margin-bottom: 1.2rem;
- }
-
- legend {
- padding: 0 0.5rem;
- color: var(--muted);
- font-size: 0.9rem;
- }
- </style>
-</head>
-
-<body>
- <div class="container">
- <h1>Bin-ки и глогинки.</h1>
-
- <form>
- {{if .TextLink }}
- <fieldset>
- <legend>Text Link</legend>
- <a href="{{ .TextLink }}">{{ .TextLink }}</a>
- </fieldset>
- {{end}}
-
- {{if .FileLink }}
- <fieldset>
- <legend>File Link</legend>
- <a href="{{ .FileLink }}">{{ .FileLink }}</a>
- </fieldset>
- {{end}}
- </form>
- </div>
-</body>
-</html>