29 lines
1.7 KiB
Django/Jinja
29 lines
1.7 KiB
Django/Jinja
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>submitted url!</title>
|
|
</head>
|
|
<body>
|
|
<h1>url submitted!</h1>
|
|
<p>thank you for your submission! <i>[sts]</i> will process your contributions and will add or remove entires based on your input.</p><br><br>
|
|
<i>to recap, you submitted...</i><br>
|
|
{% for action in input.actions %}
|
|
{% if action.what == "scanurl" %}
|
|
<h2>a URL to scan...</h2>
|
|
<p>we will scan the page or file at <strong>{{ action.where }}</strong> and add that and any other URLs found from here...</p><br><br>
|
|
{% elif action.what == "removeurl" %}
|
|
<h2>a URL to remove from our databases...</h2>
|
|
{% if action.why == "personal" %}
|
|
<p>after we confirm that <strong>{{ action.where }}</strong> contains very personal information, we will remove this and blacklist our scanners to prevent this from being scanned ever again...</p>
|
|
{% elif action.why == "malicious" %}
|
|
<p>after we confirm that <strong>{{ action.where }}</strong> contains malicious content, we will remove this and blacklist our scanners to prevent this from being scanned ever again...</p>
|
|
<p>(if this url is exceptionally dangerous, please report this url to it's hosting provider, or to the proper authorities.)</p>
|
|
{% elif action.why == "false" %}
|
|
<p>after we confirm that <strong>{{ action.where }}</strong> contains false content, we will remove this and blacklist our scanners to prevent this from being scanned ever again...</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
<hr>
|
|
<i>thaks for contributing to a <a title="free and open source software">foss project!</a></i>
|
|
</body>
|
|
</html> |