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