mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-06-29 11:36:16 +00:00
Start on Upload page
Remove reduntant Exiting text Rename css folder to theme
This commit is contained in:
parent
d85ac5f103
commit
f730ecd0c9
7 changed files with 63 additions and 61 deletions
8
app.py
8
app.py
|
@ -2,10 +2,10 @@ print("""
|
|||
___ _ _
|
||||
/ _ \ _ __ | |_ _| | ___ __ _ ___
|
||||
| | | | '_ \| | | | | | / _ \/ _` / __|
|
||||
| |_| | | | | | |_| | |__| __/ (_| \__ \\
|
||||
| |_| | | | | | |_| | |__| __/ (_| \__ \
|
||||
\___/|_| |_|_|\__, |_____\___|\__, |___/
|
||||
|___/ |___/
|
||||
Created by Fluffy Bean - Version: 080123
|
||||
Created by Fluffy Bean - Version 080123
|
||||
""")
|
||||
|
||||
# Import base packages
|
||||
|
@ -74,6 +74,10 @@ def internal_server_error(e):
|
|||
def home():
|
||||
return render_template('home.html')
|
||||
|
||||
@app.route('/upload')
|
||||
def upload():
|
||||
return render_template('upload.html')
|
||||
|
||||
@app.route('/image/<request_id>')
|
||||
def image(request_id):
|
||||
# Check if request_id is valid
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue