Flask-Workshop/templates/request-handling.html

12 lines
276 B
HTML

<html>
<head>
<title>Counter</title>
</head>
<body>
<h1>Counter = {{ counter }}</h1>
</body>
<form method="post">
<input type="submit" name="btn" value="up">
<input type="submit" name="btn" value="down">
</form>
</html>