From fc6fecee2c761bff688f75f9c2f156ef1358f96b Mon Sep 17 00:00:00 2001 From: Roman Gräf Date: Sun, 29 Nov 2020 23:22:01 +0100 Subject: Beautifulll --- herrschwarzify.py | 7 ++++++- templates/index.html | 19 +++++++++++++++---- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/herrschwarzify.py b/herrschwarzify.py index 9340a08..d47b5c3 100644 --- a/herrschwarzify.py +++ b/herrschwarzify.py @@ -3,7 +3,7 @@ import random import string from PIL import Image -from flask import Flask, render_template, request, url_for, redirect, send_from_directory +from flask import Flask, render_template, request, url_for, redirect, send_from_directory, send_file from werkzeug.datastructures import FileStorage SIGN_LOCATION = 225, 1300 @@ -38,6 +38,11 @@ def image_resource(image): return send_from_directory('uploads', image) +@app.route("/herrschwarz") +def herrschwarz(): + return send_file('herrschwarz.png') + + @app.route("/upload", methods=["POST"]) def upload(): if 'file' not in request.files or not request.files["file"].filename: diff --git a/templates/index.html b/templates/index.html index 093c6d4..6f6dbf2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -5,11 +5,22 @@ - Document + HERRSCHWARZIFY + + -
- -
+
+
+ Herr Schwarz + +

GITHUB

+
+
\ No newline at end of file -- cgit