schort/templates/index.html

27 lines
792 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>schort</title>
<link rel="stylesheet" href="static/css/index.css">
</head>
<body>
<div id="main">
<div id="message" class="{{message_type}}">
{{message}}
</div>
<form action="/" method="post" id="short_form">
<span id="url_text">URL:</span>
<input type="input" name="url" id="url_input">
<input type="hidden" name="wishId" value="{{name}}">
<input type="submit" value="Schort!" id="short_button">
</form>
<div id="infobar">
<span class="infoitem"><a href="#">API</a></span>
<span class="infoitem"><a href="#">FAQ</a></span>
<span class="infoitem"><a href="https://github.com/Sqozz/schort" target="_blank">github.com</a></span>
</div>
</div>
</body>
</html>