17 lines
410 B
HTML
17 lines
410 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Juice - {{ title }}</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/static/juice.css">
|
||
|
<script type="text/javascript" src="/static/cbor.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{{ heading }}</h1>
|
||
|
<form method="post" action="{{ form_url }}">
|
||
|
Username: <input name="username" maxlength="64" required><br>
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|
||
|
|