7 lines
152 B
Python
7 lines
152 B
Python
from flask_wtf import Form
|
|
from wtforms import SubmitField
|
|
|
|
|
|
class DeleteAccountForm(Form):
|
|
submit = SubmitField(label='Really delete my account!')
|