changed html format of templates a bit

This commit is contained in:
iou1name 2018-03-03 11:20:39 -05:00
parent 94de630311
commit b8cac6db00
4 changed files with 7 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
*/__pycache__/
secret_key secret_key
*.db *.db

View File

@ -154,7 +154,7 @@ def delete_file():
try: try:
os.remove(os.path.join(app.config.get("UPLOAD_DIR"), filename)) os.remove(os.path.join(app.config.get("UPLOAD_DIR"), filename))
db.execute("DELETE FROM uploads WHERE filename = ?", (filename,)) db.execute("DELETE FROM uploads WHERE filename = ?", (filename,))
db.commit() con.commit()
except FileNotFoundError: except FileNotFoundError:
return "Error: File not found." return "Error: File not found."
return "Success" return "Success"

View File

@ -1,6 +1,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<title>Change password</title>
<html> <html>
<head>
<title>Change password</title>
</head>
<body> <body>
<form method="post" action="{{ url_for('change_password') }}"> <form method="post" action="{{ url_for('change_password') }}">
<p>Change your password sir? <p>Change your password sir?

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html>
<head> <head>
<title>Let's uploading boys!</title> <title>Let's uploading boys!</title>
</head> </head>