コード例 #1
0
ファイル: BookSwap.py プロジェクト: YArane/ECSE-428-Book-Swap
def confirm_email():
    if request.method == 'GET':
        token = request.args.get('token')
        dbOps.confirm_email(token)
        return render_template('index.html', page='index')
コード例 #2
0
ファイル: BookSwap.py プロジェクト: YArane/ECSE-428-Book-Swap
def confirm_email():
    if request.method == 'GET':
        token = request.args.get('token')
        dbOps.confirm_email(token)
        return render_template('index.html', page='index')