We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0811b3f commit 128f114Copy full SHA for 128f114
shared/backend/signup.py
@@ -1,24 +1,17 @@
1
import contextlib
2
import os
3
-from datetime import datetime
4
from typing import Any
5
6
import httpx
7
import reflex as rx
8
from email_validator import EmailNotValidError, ValidatedEmail, validate_email
9
-from sqlmodel import Field
10
11
from shared.constants import (
12
API_BASE_URL_LOOPS,
13
REFLEX_DEV_WEB_NEWSLETTER_FORM_WEBHOOK_URL,
14
)
15
16
17
-class Waitlist(rx.Model, table=True):
18
- email: str
19
- date_created: datetime = Field(default_factory=datetime.utcnow, nullable=False)
20
-
21
22
class IndexState(rx.State):
23
"""Hold the state for the home page."""
24
0 commit comments