(self, field)
| 19 | submit = SubmitField(_l("Delete"), name="admin_delete_user") |
| 20 | |
| 21 | def validate_confirm(self, field): |
| 22 | if field.data != self.email.data: # type: ignore |
| 23 | raise ValidationError(_("Email confirmation did not match.")) |
| 24 | |
| 25 | |
| 26 | class AllowlistAddForm(StarletteForm): |