Request Demo Page
Go to themes/aplio/layouts/request-demo/list.html
page and config the follwoing data..
<section class="py-[200px] max-md:pt-150 relative overflow-hidden">
<div
class="absolute left-1/2 top-0 w-full h-[550px] -translate-x-1/2 bg-cover bg-[url('../images/hero-gradient.png')] bg-no-repeat bg-center opacity-70 md:hidden -z-10"
></div>
<div
class="container relative"
data-aos="fade-up"
data-aos-offset="200"
data-aos-duration="1000"
data-aos-once="true"
>
<div class="mb-12 text-center max-w-[475px] mx-auto">
<p class="section-tagline">Contact</p>
<h2>Request A Demo</h2>
</div>
<div class="relative z-10 max-w-[850px] mx-auto">
<div class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 flex -z-10 max-md:hidden">
<div class="w-[442px] h-[442px] rounded-full bg-primary-200/20 blur-[145px]"></div>
<div class="w-[442px] h-[442px] rounded-full bg-primary-200/25 -ml-[170px] blur-[145px]"></div>
<div class="w-[442px] h-[442px] rounded-full bg-primary-200/20 -ml-[170px] blur-[145px]"></div>
</div>
<div class=" bg-white dark:bg-dark-200 rounded-medium p-2.5 shadow-nav">
<div
class=" bg-white dark:bg-dark-200 border border-dashed rounded border-gray-100 dark:border-borderColour-dark p-12 max-md:p-5 "
>
<form>
<div class="grid grid-cols-12 max-md:gap-y-10 md:gap-x-12 md:gap-8">
<div class="max-md:col-span-full md:col-span-6">
<label
for="username"
class="block text-sm font-medium font-jakarta_sans text-paragraph dark:text-white mb-2"
>
Your name
</label>
<input
type="text"
name="first-name"
id="username"
placeholder="Name"
class="block w-full text-sm rounded-[48px] border border-borderColour dark:border-borderColour-dark py-2.5 px-5 text-paragraph-light placeholder:text-paragraph-light dark:placeholder:text-paragraph-light outline-none bg-white dark:bg-dark-200 focus:border-primary dark:focus:border-primary duration-300 transition-all"
/>
</div>
<div class="max-md:col-span-full md:col-span-6">
<label
for="companyname"
class="block text-sm font-medium font-jakarta_sans text-paragraph dark:text-white mb-2"
>
Comapny name
</label>
<input
type="text"
name="company-name"
id="companyname"
placeholder="Company Name"
class="block w-full text-sm rounded-[48px] border border-borderColour dark:border-borderColour-dark py-2.5 px-5 text-paragraph-light placeholder:text-paragraph-light dark:placeholder:text-paragraph-light outline-none bg-white dark:bg-dark-200 focus:border-primary dark:focus:border-primary duration-300 transition-all"
/>
</div>
<div class="max-md:col-span-full md:col-span-6">
<label
for="contactno"
class="block text-sm font-medium font-jakarta_sans text-paragraph dark:text-white mb-2"
>
Contact No.
</label>
<input
type="text"
name="contact-number"
id="contactno"
placeholder="Contact Number"
class="block w-full text-sm rounded-[48px] border border-borderColour dark:border-borderColour-dark py-2.5 px-5 text-paragraph-light placeholder:text-paragraph-light dark:placeholder:text-paragraph-light outline-none bg-white dark:bg-dark-200 focus:border-primary dark:focus:border-primary duration-300 transition-all"
/>
</div>
<div class="max-md:col-span-full md:col-span-6">
<label
for="email"
class="block text-sm font-medium font-jakarta_sans text-paragraph dark:text-white mb-2"
>
Your Email
</label>
<input
type="email"
name="first-name"
id="email"
placeholder="Email"
class="block w-full text-sm rounded-[48px] border border-borderColour dark:border-borderColour-dark py-2.5 px-5 text-paragraph-light placeholder:text-paragraph-light outline-none bg-white dark:bg-dark-200 focus:border-primary dark:focus:border-primary duration-300 transition-all"
/>
</div>
<div class="col-span-full">
<label
for="message"
class="block text-sm font-medium font-jakarta_sans text-paragraph dark:text-white mb-2"
>
Message
</label>
<textarea
name="first-name"
id="message"
rows="10"
class="block w-full text-sm rounded border border-borderColour dark:border-borderColour-dark py-2.5 px-5 text-paragraph-light placeholder:text-paragraph-light outline-none resize-none bg-white dark:bg-dark-200 focus:border-primary dark:focus:border-primary duration-300 transition-all"
></textarea>
</div>
<div class="mx-auto col-span-full text-center">
<button class="btn">Request Now</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
Functional Request Demo Form
- To make the form functional, you will need to handle form submission and implement the desired behavior, such as sending the form data to a server or displaying a success message.
- Add necessary form validation, such as checking if the email field is filled and if the entered email is valid.
- You can use third-party libraries or frameworks to handle form submission and validation, or you can implement your own custom logic.
Please note that configuring the subscription form requires both frontend (HTML, CSS) and backend (form submission handling) development skills. If you are unfamiliar with web development, it may be helpful to consult with a developer or study relevant documentation and tutorials.