intro_hacking_ctf/web/templates/index.html

21 lines
491 B
HTML
Raw Normal View History

2024-02-20 15:28:12 +01:00
{% autoescape true %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Posts</title>
</head>
<body>
<form method="POST">
<input type="text"/>
<input type="submit"/>
</form>
{% for post in posts %}
<p> {{ post[1] }} </p>
{% endfor %}
</body>
</html>
{% endautoescape %}