Add theme_3d_systems/views/pages/page_contact.xml
This commit is contained in:
parent
a1c2c8d765
commit
4c66fb3013
1 changed files with 111 additions and 0 deletions
111
theme_3d_systems/views/pages/page_contact.xml
Normal file
111
theme_3d_systems/views/pages/page_contact.xml
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Contact Page Template (Using Native Odoo CRM / Lead Form) -->
|
||||
<template id="page_contact" name="3D Systems - Contact Us">
|
||||
<t t-call="website.layout">
|
||||
<div id="wrap" class="oe_structure oe_empty">
|
||||
<section class="py-5 bg-darker border-bottom border-dark-subtle">
|
||||
<div class="container text-center py-4">
|
||||
<span class="badge-tech-tag mb-3">Initiate Collaboration</span>
|
||||
<h1 class="display-4 fw-bold text-white mb-3">Let's Build Your Enterprise System</h1>
|
||||
<p class="text-light-muted max-w-700 mx-auto">
|
||||
Submit your project parameters below. Our solutions architect will respond within 24 hours with a preliminary technical assessment.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="py-6 position-relative">
|
||||
<div class="container">
|
||||
<div class="row g-5">
|
||||
<!-- Contact Info Cards -->
|
||||
<div class="col-lg-5">
|
||||
<div class="card-3d-glass p-4 mb-4">
|
||||
<h4 class="text-white mb-3">Direct Engineering Line</h4>
|
||||
<div class="d-flex align-items-center gap-3 mb-3">
|
||||
<div class="p-3 bg-cyan-subtle rounded-3 text-cyan">
|
||||
<i class="fa fa-envelope-o fa-lg"></i>
|
||||
</div>
|
||||
<div>
|
||||
<div class="small text-light-muted">Email Technical Team</div>
|
||||
<div class="text-white fw-semibold">solutions@systems3d.io</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex align-items-center gap-3">
|
||||
<div class="p-3 bg-cyan-subtle rounded-3 text-cyan">
|
||||
<i class="fa fa-phone fa-lg"></i>
|
||||
</div>
|
||||
<div>
|
||||
<div class="small text-light-muted">Direct Phone</div>
|
||||
<div class="text-white fw-semibold">+1 (800) 555-0199</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-3d-glass p-4">
|
||||
<h5 class="text-white mb-3">Architecture SLA & Support</h5>
|
||||
<p class="small text-light-muted mb-2">
|
||||
<i class="fa fa-check text-cyan me-2"></i> Dedicated Odoo 19 Solution Architect
|
||||
</p>
|
||||
<p class="small text-light-muted mb-2">
|
||||
<i class="fa fa-check text-cyan me-2"></i> 24/7 Monitored Cloud Infrastructure
|
||||
</p>
|
||||
<p class="small text-light-muted mb-0">
|
||||
<i class="fa fa-check text-cyan me-2"></i> Strict Non-Disclosure Agreement (NDA)
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Native Odoo Website Form -->
|
||||
<div class="col-lg-7">
|
||||
<div class="card-3d-glass p-4 p-md-5">
|
||||
<h3 class="text-white fw-bold mb-4">Project Parameters</h3>
|
||||
|
||||
<form action="/website/form/" method="post" enctype="multipart/form-data" class="s_website_form" data-model_name="crm.lead" data-success_mode="redirect" data-success_page="/contactus-thank-you">
|
||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
|
||||
|
||||
<div class="row g-3 mb-3">
|
||||
<div class="col-md-6">
|
||||
<label class="form-label text-light-base small">Your Name *</label>
|
||||
<input type="text" class="form-control bg-glass border-glass text-white" name="contact_name" required="required" placeholder="Alex Morgan"/>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label class="form-label text-light-base small">Work Email *</label>
|
||||
<input type="email" class="form-control bg-glass border-glass text-white" name="email_from" required="required" placeholder="alex@company.com"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row g-3 mb-3">
|
||||
<div class="col-md-6">
|
||||
<label class="form-label text-light-base small">Company Name</label>
|
||||
<input type="text" class="form-control bg-glass border-glass text-white" name="partner_name" placeholder="Acme Logistics"/>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label class="form-label text-light-base small">Primary Focus</label>
|
||||
<select class="form-select bg-glass border-glass text-white" name="name">
|
||||
<option value="Odoo 19 ERP Implementation">Odoo 19 ERP Implementation</option>
|
||||
<option value="Custom Web Systems & Portals">Custom Web Systems & Portals</option>
|
||||
<option value="Business Automation Pipeline">Business Automation Pipeline</option>
|
||||
<option value="API & System Integration">API & System Integration</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label class="form-label text-light-base small">Project Scope & Specifications *</label>
|
||||
<textarea class="form-control bg-glass border-glass text-white" name="description" rows="5" required="required" placeholder="Describe your current system challenges, target timeline, and key requirements..."></textarea>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-gradient-primary btn-lg w-100 shadow-glow">
|
||||
<span>Transmit Project Inquiry</span>
|
||||
<i class="fa fa-paper-plane ms-2"></i>
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
</odoo>
|
||||
Loading…
Reference in a new issue