summaryrefslogtreecommitdiff
path: root/static/index.html
diff options
context:
space:
mode:
authorCarson Fleming <cflems@cflems.net>2023-10-19 03:17:21 -0400
committerCarson Fleming <cflems@cflems.net>2023-10-19 03:17:21 -0400
commitc6d0cd3fca3cc9cacdb4c5a88797d00ae5560841 (patch)
tree061a3a5bbaeb5d99086ddd3a93ba20e6a2667126 /static/index.html
parent85f217f63e248ae0df44368a6a0d03620955f170 (diff)
downloadfle.ms-c6d0cd3fca3cc9cacdb4c5a88797d00ae5560841.tar.gz
Dream up a style for the frontend
Diffstat (limited to 'static/index.html')
-rw-r--r--static/index.html34
1 files changed, 31 insertions, 3 deletions
diff --git a/static/index.html b/static/index.html
index b59e0ef..4deeefb 100644
--- a/static/index.html
+++ b/static/index.html
@@ -2,10 +2,38 @@
<html>
<head>
<meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <link rel="canonical" href="https://fle.ms/" />
+ <link rel="icon" type="image/png" href="img/logo.png" />
+ <link rel="stylesheet" type="text/css" href="https://cflems.net/css/fonts.css" />
+ <link rel="stylesheet" type="text/css" href="css/standard.css" />
+ <link rel="stylesheet" type="text/css" href="css/mobile.css" />
<title>fle.ms</title>
</head>
- <body>
- <h1>fle.ms</h1>
- <p>URL Shortener</p>
+ <body class="dark">
+ <div id="header">
+ <h1 id="logo">fle.ms</h1>
+ </div>
+ <div id="content">
+ <div id="lhs">
+ <div class="form-element">
+ <p><label for="url">Paste a Long URL</label></p>
+ <p><input id="url" type="text" placeholder="https://docs.google.com/spreadsheets/d/1SIXl0TxDgaTU49ZOph5s8HA5ZqtEakBCdQkqHzzfhf8/edit" class="fullsize" /></p>
+ </div>
+ <div class="form-element">
+ <p><label for="slug">Customize Short URL</label></p>
+ <p>
+ <label id="base-url" for="slug">fle.ms/</label>
+ <input id="slug" type="text" />
+ </p>
+ </div>
+ <div class="form-element">
+ <p><button id="shortenButton" class="fullsize">Shorten URL</button></p>
+ </div>
+ </div>
+ <div id="rhs">
+ <p>A URL shortener is a thing that does blah blah blah.</p>
+ </div>
+ </div>
</body>
</html>