octomode/templates/start.html

14 lines
420 B
HTML
Raw Normal View History

2022-01-12 21:27:06 +01:00
<!DOCTYPE html>
<html lang='en'>
<head>
2022-10-02 16:54:13 +02:00
<meta charset="utf-8" />
<title>octomode</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}">
2022-01-12 21:27:06 +01:00
</head>
<body class="start-page">
<form action="{{ url_for('index') }}" method="POST">
2022-10-02 16:54:13 +02:00
<h1><input type="submit" value="open"> <input type="text" name="name"> <em class="octomode">in octomode</em></h1>
</form>
2022-01-12 21:27:06 +01:00
</body>
</html>