404 page button for reseting password just isnt actually setup yet so just goes to a wip page and a bit more cleaning on html files
This commit is contained in:
@@ -115,5 +115,12 @@ def signup():
|
||||
def all_users():
|
||||
return render_template('all_users.html')
|
||||
|
||||
@app.errorhandler(404)
|
||||
def page_not_found(e):
|
||||
return render_template('404.html'), 404
|
||||
|
||||
@app.route('/resetpassword')
|
||||
def resetpassword():
|
||||
return render_template('resetpassword.html')
|
||||
if __name__ == '__main__':
|
||||
app.run(debug=True)
|
||||
|
||||
Reference in New Issue
Block a user