Skip to content
#

wtforms

Here are 162 public repositories matching this topic...

pb-jeff-oneill
pb-jeff-oneill commented Oct 18, 2019

The Flask-WTF docs state:

When CSRF validation fails, it will raise a CSRFError.

However, this appears to only be true, if this optional code has been used:

from flask_wtf.csrf import CSRFProtect
csrf = CSRFProtect(app)

When that code is not used, forms are created by subclassing FlaskForm, and CSRF validation fails, then validate_on_submit returns False instead of raisi

DiptoChakrabarty
DiptoChakrabarty commented Sep 30, 2021

Currently the applications forms are defined in resume/forms.py

It would be good if the form names are redefined to start with capital letters and ending with Form (eg UserExpForm)

The forms present are

  • RegistartionForm (Done)
  • LoginForm (Done)
  • PostingForm (Done)
  • UsereducationForm
  • UserexperienceForm
  • UserProjectsForm
  • ResumeBuilderForm
  • UserSkillsForm
  • UserAchievement

This web application is basically a system which uses face recognition to login to any account. People can use this login application for various websites or web applications. It also has provision for registering face for new entries.

  • Updated Jan 16, 2021
  • HTML

Improve this page

Add a description, image, and links to the wtforms topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the wtforms topic, visit your repo's landing page and select "manage topics."

Learn more