misc python code

This commit is contained in:
ys
2024-12-20 21:50:09 +00:00
parent 6dc40ba6af
commit d3dc84416d
44 changed files with 24998 additions and 0 deletions

View 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>