diff --git a/tiny0/forms.py b/tiny0/forms.py index bd848cb..914cbd6 100644 --- a/tiny0/forms.py +++ b/tiny0/forms.py @@ -32,7 +32,7 @@ def validate_URL(form, field): # If the url contains the websites domain if WEBSITE_DOMAIN in field.data.lower(): # Raise a ValidationError - raise ValidationError("Yeah, that's definitely a valid URL") + raise ValidationError("Invalid URL") # If the URL does not start with http:// and https:// if not(field.data.lower().startswith("http://")) and not(field.data.lower().startswith("https://")): diff --git a/tiny0/static/style.css b/tiny0/static/style.css index e6a86d4..ec2ded1 100644 --- a/tiny0/static/style.css +++ b/tiny0/static/style.css @@ -119,7 +119,7 @@ body { margin-bottom: 2vh; } -.donation h3 { +.donation h4 { margin-bottom: 4vh; } diff --git a/tiny0/templates/donate.html b/tiny0/templates/donate.html index 27b04d6..03a917b 100644 --- a/tiny0/templates/donate.html +++ b/tiny0/templates/donate.html @@ -1,17 +1,10 @@ {% extends "layout.html" %} {% block body %} -
-