Files
notes/code/misc/python/scripts/MITM/templates/whitelist.html
2024-12-20 21:50:09 +00:00

27 lines
785 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Whitelisted URLs</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1 class="mb-4">Whitelisted URLs</h1>
<a href="{{ url_for('admin') }}" class="btn btn-secondary mb-4">Back to Admin</a>
<table class="table table-bordered">
<thead class="thead-dark">
<tr>
<th>URL</th>
</tr>
</thead>
<tbody>
{% for url in approved_urls %}
<tr>
<td>{{ url[0] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>