@app.route('/form-example', methods=['GET', 'POST']) #allow both GET and POST requestsdefform_example():
if request.method =='POST': #this block is only entered when the form is submitted
language = request.form.get('language')
framework = request.form['framework']
return'''<h1>The language value is: {}</h1><h1>The framework value is: {}</h1>'''.format(language, framework)
return'''<form method="POST">
Language: <input type="text" name="language"><br>
Framework: <input type="text" name="framework"><br><input type="submit" value="Submit"><br></form>'''
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email