You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from wtforms import StringField, TextAreaField, TextField, SubmitField, validators, ValidationError
class ContactForm(Form):
name = TextField("Navn", [validators.Required("Vennligst fyll inn ditt navn.")])
email = TextField("E-post", [validators.Required("Vennligst fyll inn din e-post adresse."), validators.Email("Vennligst fyll inn din e-post adresse.")])
subject = TextField("Emne", [validators.Required("Venligst skriv inn et emne.")])
message = TextAreaField("Melding", [validators.Required("Venligst skriv en melding.")])