Contact us forms
-
i have created cms page for contact us page and linked it in footer source code, but right now i have no content for contact us page, i need to create email and message forms as content, so how do i create a working forms?
-
@yeshi74
you need to write source code for this contact-us form for working forms https://prnt.sc/tdcxxrThanks
-
@Vaishali-Agarwal can u give me a working form source code sample to put in the content?
-
@yeshi74 said in Contact us forms:
linked
Hello there,
In cms pages you can create your own pages according to your requirement. Here is sample view with it's code
<div class="static-container">
<div class="mb-5">
<div>
<h1>Contact Us</h1>
</div>
<div><input type="text" class="form-style" name="email" placeholder="email" /></div>
<div><textarea name="message" class="mt15 form-style mb10" placeholder="message"></textarea></div>
<div><button class="theme-btn">Submit</button></div>
</div>
</div>Let me know if you face any further query.
Thanks!
-
@shubhwebkul Hi thank you so much for the reply. can u tell me how to put logic on this, to make it work with my email.
thank u. -
Hello there,
You can wrap this HTML inside the form tag and provide your action and put your logic there.