def auth_register_post(): if not settings.ALLOW_REGISTRATION: status.push_status_message(language.REGISTRATION_UNAVAILABLE) return redirect('/') form = RegistrationForm(request.form, prefix='register') # Process form if form.validate(): try: user = framework.auth.register_unconfirmed( form.username.data, form.password.data, form.fullname.data) framework.auth.signals.user_registered.send(user) except (ValidationValueError, DuplicateEmailError): status.push_status_message( language.ALREADY_REGISTERED.format(email=form.username.data)) return auth_login() if user: if settings.CONFIRM_REGISTRATIONS_BY_EMAIL: send_confirm_email(user, email=user.username) message = language.REGISTRATION_SUCCESS.format(email=user.username) status.push_status_message(message, 'success') return auth_login() else: return redirect('/login/first/') else: forms.push_errors_to_status(form.errors) return auth_login()
def auth_register_post(): if not settings.ALLOW_REGISTRATION: status.push_status_message(language.REGISTRATION_UNAVAILABLE) return redirect('/') form = RegistrationForm(request.form, prefix='register') # Process form if form.validate(): try: user = framework.auth.register_unconfirmed(form.username.data, form.password.data, form.fullname.data) framework.auth.signals.user_registered.send(user) except (ValidationValueError, DuplicateEmailError): status.push_status_message( language.ALREADY_REGISTERED.format(email=form.username.data)) return auth_login() if user: if settings.CONFIRM_REGISTRATIONS_BY_EMAIL: send_confirm_email(user, email=user.username) message = language.REGISTRATION_SUCCESS.format( email=user.username) status.push_status_message(message, 'success') return auth_login() else: return redirect('/login/first/') else: forms.push_errors_to_status(form.errors) return auth_login()
def registration_form(): return form_utils.jsonify(RegistrationForm(prefix='register'))