Adding forms testing

This commit is contained in:
2025-04-01 11:51:20 +02:00
parent 9bbb885516
commit f660a33425
4 changed files with 50 additions and 2 deletions

23
templates/forms.html Normal file
View File

@@ -0,0 +1,23 @@
<!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.naam.label }} {{form.naam}}
<br>
{{ form.url.label}} {{form.url}}
<br>
{{ form.submit() }}
</form>
</body>
</html>