I have a dynamic web-page that should process two forms: a login form and a register form. I am using WTForms to process the two forms but I am having some trouble making it work, since both forms are being rendered to the same page.
The following is the code for the login form of my webpage:
PYTHON:
class Login(Form):
login_user = TextField('Username', [validators.Required()])
login_pass = PasswordField('Password', [validators.Required()])
@application.route('/index', methods=('GET', 'POST'))
def index():
l_form = Login(request.form, prefix="login-form")
if request.method == 'POST' and l_form.validate():
check_login = cursor.execute("SELECT * FROM users WHERE username = '%s' AND pwd = '%s'"
% (l_form.login_user.data, hashlib.sha1(l_form.login_pass.data).hexdigest()))
if check_login == True:
conn.commit()
return redirect(url_for('me'))
return render_template('index.html', lform=l_form)
HTML:
<form name="lform" method="post" action="/index">
{{ lform.login_user }}
{{ lform.login_pass }}
<input type="submit" value="Login" />
</form>
The following is the code for the register form of my webpage:
PYTHON:
class Register(Form):
username = TextField('Username', [validators.Length(min=1, max = 12)])
password = PasswordField('Password', [
validators.Required(),
validators.EqualTo('confirm_password', message='Passwords do not match')
])
confirm_password = PasswordField('Confirm Password')
email = TextField('Email', [validators.Length(min=6, max=35)])
@application.route('/index', methods=('GET','POST'))
def register():
r_form = Register(request.form, prefix="register-form")
if request.method == 'POST' and r_form.validate():
check_reg = cursor.execute("SELECT * FROM users WHERE username = '%s' OR `e-mail` = '%s'"
% (r_form.username.data, r_form.email.data))
if check_reg == False:
cursor.execute("INSERT into users (username, pwd, `e-mail`) VALUES ('%s','%s','%s')"
% (r_form.username.data, hashlib.sha1(r_form.password.data).hexdigest(), check_email(r_form.email.data)))
conn.commit()
return redirect(url_for('index'))
return render_template('index.html', rform=r_form)
HTML:
<form name="rform" method="post" action="/index">
{{ rform.username }}
{{ rform.email }}
{{ rform.password }}
{{ rform.confirm_password }}
<input type="submit" value="Register />
</form>
I get the following error when I go ahead and load the webpage:
Traceback (most recent call last):
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1836, in __call__
return self.wsgi_app(environ, start_response)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1820, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1403, in handle_exception
reraise(exc_type, exc_value, tb)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskapp.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:UsersHTVal_000DesktopinnoCMSmain.py", line 36, in index
return render_template('index.html', lform=l_form)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskemplating.py", line 128, in render_template
context, ctx.app)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesflaskemplating.py", line 110, in _render
rv = template.render(context)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesjinja2environment.py", line 969, in render
return self.environment.handle_exception(exc_info, True)
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesjinja2environment.py", line 742, in handle_exception
reraise(exc_type, exc_value, tb)
File "C:UsersHTVal_000DesktopinnoCMSemplatesdefaultindex.html", line 52, in top-level template code
{{ rform.username }}
File "C:UsersHTVal_000DesktopinnoCMSvirtualenvlibsite-packagesjinja2environment.py", line 397, in getattr
return getattr(obj, attribute)
UndefinedError: 'rform' is undefined
From what I understand, there is a conflict between the forms because according to the traceback:
return render_template('index.html', lform=l_form)
Returns the following error:
UndefinedError: 'rform' is undefined
When the script sees:
{{ rform.username }}
{{ rform.email }}
{{ rform.password }}
{{ rform.confirm_password }}
But it completely ignores:
{{ lform.login_user }}
{{ lform.login_pass }}
It might be a little confusing, I am confused loads as well, and I hope that someone has faced this problem before so that I could solve it too.
See Question&Answers more detail:
os