Hello,
I am using a html/css template for my django template. Included in the template is a very nice contact form, and I would like to insert my contact form into it, how could I go about that?
I saw that you can widgets, but this seems to be more for stylizing it from the beginning, rather than in the css/html.
Here is the html, form and view! Thanks
HTML:
https://pastebin.com/tTMJZDUA
View:
https://pastebin.com/izM8rTpW
Form:
class ContactForm(forms.Form):
name = forms.CharField(required=True)
email = forms.CharField(required=True)
subject = forms.CharField(required=True)
message = forms.CharField(required=True)
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.