Files
WebTech/templates/forms.html
2025-04-01 12:08:56 +02:00

23 lines
430 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testing</title>
</head>
<body>
<h1>Hallo</h1>
<form method="POST">
{{ form.hidden_tag() }}
{{ form.name.label }} {{form.name}}
<br>
{{ form.url.label}} {{form.url}}
<br>
{{ form.submit() }}
</form>
</body>
</html>