django-weather/weather_project/weather/forms.py
evdo 16aa25a588
All checks were successful
ci / build (push) Successful in 36s
Added email sending
2025-04-01 15:20:23 +02:00

5 lines
No EOL
136 B
Python

from django import forms
class EmailScheduleForm(forms.Form):
city = forms.CharField(max_length=100)
email = forms.EmailField()