diff --git a/app.py b/app.py
index b1335e7..405b8e3 100644
--- a/app.py
+++ b/app.py
@@ -1,11 +1,11 @@
print("""
___ _ _
- / _ \ _ __ | |_ _| | ___ __ _ ___
-| | | | '_ \| | | | | | / _ \/ _` / __|
-| |_| | | | | | |_| | |__| __/ (_| \__ \
- \___/|_| |_|_|\__, |_____\___|\__, |___/
+ / _ \\ _ __ | |_ _| | ___ __ _ ___
+| | | | '_ \\| | | | | | / _ \\/ _` / __|
+| |_| | | | | | |_| | |__| __/ (_| \\__ \\
+ \\___/|_| |_|_|\\__, |_____\\___|\\__, |___/
|___/ |___/
-Created by Fluffy Bean - Version 080123
+Created by Fluffy Bean - Version 100123
""")
# Import base packages
@@ -91,6 +91,13 @@ def group_id(group_id):
def upload():
return render_template('upload.html')
+@app.route('/upload/form', methods=['POST'])
+def upload_form():
+ if request.method != 'POST':
+ abort(405)
+
+ return 'balls'
+
@app.route('/profile')
def profile():
return render_template('profile.html', user_id='gwa gwa')
diff --git a/templates/error.html b/templates/error.html
index 719ed6d..ea3c026 100644
--- a/templates/error.html
+++ b/templates/error.html
@@ -1,7 +1,7 @@
{% extends 'layout.html' %}
{% block content %}
+