13 lines
218 B
Python
13 lines
218 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class EmailAuthenticationForm(BaseModel):
|
|
"""The body of the form for email authentication."""
|
|
|
|
callback_url: Optional[str] = None
|
|
|
|
email: str
|