schort/templates/index.html

22 lines
545 B
HTML
Raw Normal View History

2016-02-10 07:57:22 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
2016-02-10 23:00:27 +01:00
<title>schort</title>
2016-02-10 07:57:22 +01:00
<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}}">
2016-02-10 23:00:27 +01:00
<input type="submit" value="Schort!" id="short_button">
2016-02-10 07:57:22 +01:00
</form>
</div>
</body>
</html>