46 lines
494 B
HTML
46 lines
494 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body class="bg-light">
|
|
|
|
<div class="container mt-5">
|
|
|
|
<h2>{{ title }}</h2>
|
|
|
|
<div class="alert alert-success">
|
|
{{ message }}
|
|
</div>
|
|
|
|
<ul class="list-group">
|
|
|
|
{% for k,v in data.items() %}
|
|
|
|
<li class="list-group-item">
|
|
|
|
<b>{{k}}</b> : {{v}}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
<br>
|
|
|
|
<a href="/" class="btn btn-primary">
|
|
|
|
Back
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |