ca42/templates/home.html
2024-09-13 00:58:49 +02:00

17 lines
360 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ca42</title>
</head>
<body>
<h1>Ca42</h1>
{% for date in dates %}
<h1>{{date}}</h1>
{% endfor %}
<form action="/api/update" method="post">
<button name="foo" value="upvote">Upvote</button>
</form>
</body>
</html>