mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
8 lines
205 B
Python
8 lines
205 B
Python
from flask_babel import lazy_gettext
|
|
from flask_wtf import FlaskForm
|
|
from wtforms import SubmitField
|
|
|
|
|
|
class RevokeOAuth2TokenForm(FlaskForm):
|
|
submit = SubmitField(lazy_gettext("Revoke OAuth2 token"))
|