blob: 4566753ee1e0d85f9332241db93db8a4b146a439 [file] [log] [blame]
DTabidzeb00a1db2024-01-12 18:30:14 +04001<!DOCTYPE html>
Davit Tabidzef99bc4f2024-01-17 22:37:32 +04002<html lang="en" data-theme="light">
DTabidzeb00a1db2024-01-12 18:30:14 +04003<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>URL Shortener</title>
Davit Tabidze950d8042024-07-18 20:42:55 +04007 <link rel="stylesheet" href="/static/pico.2.0.6.min.css">
8 <link rel="stylesheet" href="/static/main.css?v=0.0.2">
Davit Tabidzef99bc4f2024-01-17 22:37:32 +04009 <script type="application/javascript" src="/static/main.js"></script>
DTabidzeb00a1db2024-01-12 18:30:14 +040010</head>
Davit Tabidzef99bc4f2024-01-17 22:37:32 +040011<body class="container">
Davit Tabidze950d8042024-07-18 20:42:55 +040012 <h1 class="headline">URL Shortener</h1>
DTabidzeb00a1db2024-01-12 18:30:14 +040013 <form action="/" method="post">
14 <label for="address">Address:</label>
15 <input type="text" id="address" name="address" required>
Davit Tabidze950d8042024-07-18 20:42:55 +040016 <label for="custom">Short Name (optional):</label>
DTabidzeb00a1db2024-01-12 18:30:14 +040017 <input type="text" id="custom" name="custom">
DTabidzeb00a1db2024-01-12 18:30:14 +040018 <button type="submit">Shorten URL</button>
19 </form>
Davit Tabidze950d8042024-07-18 20:42:55 +040020 <hr>
21 <div class="grid">
22 <div class="grid-cell">Active</div>
23 <div class="grid-cell">Short Name</div>
24 <div class="grid-cell">Address</div>
25 {{- range .NamedAddresses }}
26 <div class="grid-cell active">
DTabidze71353b52024-01-17 16:02:55 +040027 <input type="checkbox" role="switch" {{ if .Active }}checked{{ end }} onclick="toggle('{{ .Name }}', {{ not .Active }});">
Davit Tabidze950d8042024-07-18 20:42:55 +040028 </div>
29 <div class="grid-cell">
30 {{ if .Active }}
31 <a href="{{ .Name }}" target="_blank">{{ .Name }}</a>
32 {{ else }}
33 {{ .Name }}
34 {{ end }}
35 </div>
36 <div class="grid-cell">{{ .Address }}</div>
37 {{- end }}
38 </div>
DTabidzeb00a1db2024-01-12 18:30:14 +040039</body>
DTabidzeb00a1db2024-01-12 18:30:14 +040040</html>