django-weather/weather_project/weather/forms.py

5 lines
136 B
Python
Raw Normal View History

2025-04-01 13:20:23 +00:00
from django import forms
class EmailScheduleForm(forms.Form):
city = forms.CharField(max_length=100)
email = forms.EmailField()