misc python code
This commit is contained in:
27
code/misc/python/scripts/MITM/templates/whitelist.html
Normal file
27
code/misc/python/scripts/MITM/templates/whitelist.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user