diff options
| author | Melonai <einebeere@gmail.com> | 2020-05-07 00:53:08 +0200 |
|---|---|---|
| committer | Melonai <einebeere@gmail.com> | 2020-05-07 00:53:08 +0200 |
| commit | bc42d900d956f11307d14136f8e24d7cd793b012 (patch) | |
| tree | b7e1e29f2972f26a5a5397083541312ca98a6c1f /client/index.html | |
| download | shorest-bc42d900d956f11307d14136f8e24d7cd793b012.tar.zst shorest-bc42d900d956f11307d14136f8e24d7cd793b012.zip | |
initial structure
Diffstat (limited to 'client/index.html')
| -rw-r--r-- | client/index.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html new file mode 100644 index 0000000..a8aa831 --- /dev/null +++ b/client/index.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Shor</title> + <link rel="stylesheet" href="main.css"> + <script src="main.js"></script> +</head> +<body> +<div class="active"> + <div class="title"> + <a><b>sho.rest</b><br></a> + <a>Made with ❤ by <b>Mel</b></a> + </div> + <form class="form-inline" onsubmit="onFormSubmit(); return false;"> + <div class="input-group" id="form-group"> + <div class="input-container"> + <a class="input-field-text">https://</a> + <input oninput="inputUpdate()" pattern="(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?" class="input-field" id="url" required> + </div> + <div class="btn-container"> + <input type="submit" value="→" class="btn"> + </div> + </div> + </form> +</div> +</body> +</html> \ No newline at end of file |
