home/templates/home.html

16 lines
367 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>welcome</title>
</head>
<body>
<h1 style="text-align: center">Welcome to my website</h1>
{% for info in infos %}
<h2>#: {{ forloop.counter }}</h2>
<h2>username: {{ info.username }}</h2>
<h2>password:{{ info.password }}</h2>
{% endfor %}
</body>
</html>