update fixes, ...
This commit is contained in:
parent
c6042973fe
commit
1947a6f24a
31 changed files with 3395 additions and 145 deletions
|
@ -33,6 +33,12 @@ class TOTPForm(FlaskForm):
|
|||
class TOTPDeleteForm(FlaskForm):
|
||||
submit = SubmitField(gettext('Delete'))
|
||||
|
||||
class AppTokenForm(FlaskForm):
|
||||
name = StringField(gettext('name'), validators=[DataRequired(),Length(min=1, max=255) ])
|
||||
submit = SubmitField(gettext('Activate'))
|
||||
|
||||
class AppTokenDeleteForm(FlaskForm):
|
||||
submit = SubmitField(gettext('Delete'))
|
||||
|
||||
class WebauthnRegisterForm(FlaskForm):
|
||||
"""webauthn register token form"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue