Send a confirmation email when an account is created. Links don't do anything yet.

This commit is contained in:
yackob03 2013-09-27 19:29:01 -04:00
parent 87dc3b6344
commit 99341f7d53
8 changed files with 73 additions and 7 deletions

View file

@ -56,6 +56,16 @@ def signin():
abort(403)
@app.route('/confirm', methods=['GET'])
def confirm_email():
pass
@app.route('/reset', methods=['GET'])
def password_reset():
pass
@app.route('/signin', methods=['GET'])
def render_signin_page():
return send_file('templates/signin.html')