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

23 lines
844 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Whitelist Request</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">Request to Whitelist a URL</h1>
<form action="/whitelist" method="post">
<div class="form-group">
<label for="url">URL:</label>
<input type="text" class="form-control" id="url" name="url" required>
</div>
<div class="form-group">
<label for="reason">Reason:</label>
<textarea class="form-control" id="reason" name="reason" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>