diff --git a/static/styles/style.css b/static/styles/style.css index 7fa2b2a..b8b6a44 100644 --- a/static/styles/style.css +++ b/static/styles/style.css @@ -96,6 +96,14 @@ body { border-radius: 3px; } +.errors-container { + display: flex; + justify-content: center; + padding: 10px 10px; + border-radius: 3px; + +} + .results-table { padding: 50px 50px; border-radius: 3px; diff --git a/templates/results-overview-new.html b/templates/results-overview-new.html index 8f09770..71e0e36 100644 --- a/templates/results-overview-new.html +++ b/templates/results-overview-new.html @@ -1,6 +1,13 @@ +
+

+ + You may have mistyped: {{errors|join(',')}}. Try again! + +

+
@@ -30,13 +37,23 @@ @@ -46,9 +63,7 @@ -{% for error in errors %} -{{error}} -{% endfor %} + {% block scripts %}

- VirusTotalVendor marked this host as malicious or suspicious: + VirusTotal +
+ {% if host.vt['score'] > 0 %} + Vendor marked this host as malicious or suspicious: {{host.vt['vendors']|join(', ')}} + {{host.vt['score']}} + {% else %} + No vendors marked this host as malicious or suspicious. + {% endif %} +
+ AbuseIPDB
IP address is: {{host.abuseipdb['IP_address']}}
Is this Tor: {{host.abuseipdb['Tor']}}
Usage: {{host.abuseipdb['usage']}}
- +
+