166 lines
4.1 KiB
HTML
166 lines
4.1 KiB
HTML
{{ template "rmo/layout/base.html" . }}
|
|
|
|
{{ define "title" }}Contact Information{{ end }}
|
|
{{ define "extraheader" }}
|
|
<style>
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.progress-bar {
|
|
background-color: #0d6efd;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.benefit-box {
|
|
background-color: #d1ecf1;
|
|
border-left: 4px solid #0dcaf0;
|
|
padding: 16px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.optional-badge {
|
|
font-size: 0.85rem;
|
|
color: #6c757d;
|
|
font-weight: normal;
|
|
}
|
|
</style>
|
|
{{ end }}
|
|
{{ define "content" }}
|
|
<div class="container-fluid px-3 py-3">
|
|
<!-- Header -->
|
|
<header class="text-center mb-4 pb-3 border-bottom">
|
|
<div class="d-flex align-items-center justify-content-center mb-2">
|
|
<img
|
|
src="{{ .District.URLLogo }}"
|
|
alt="{{ .District.Name }} logo"
|
|
class="me-2"
|
|
style="height: 40px; width: auto;"
|
|
/>
|
|
<h1 class="h5 mb-0">{{ .District.Name }}</h1>
|
|
</div>
|
|
<div class="text-muted small">
|
|
<i class="bi bi-telephone"></i> {{ .District.OfficePhone }}
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Progress Bar -->
|
|
<div class="mb-4">
|
|
<div class="d-flex justify-content-between align-items-center mb-2">
|
|
<span class="small text-muted">Step 6 of 8</span>
|
|
</div>
|
|
<div class="progress" style="height: 8px;">
|
|
<div
|
|
class="progress-bar"
|
|
role="progressbar"
|
|
style="width: 75%;"
|
|
aria-valuenow="75"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Main Content -->
|
|
<main>
|
|
<h2 class="h4 mb-3">Contact information</h2>
|
|
|
|
<div class="benefit-box mb-4">
|
|
<p class="mb-0">
|
|
<i class="bi bi-info-circle"></i>
|
|
<strong>Why share your contact information?</strong><br />
|
|
<small>
|
|
Providing your contact information helps the District review your
|
|
response and coordinate with you if a visit is still needed. This
|
|
can save time and prevent unnecessary follow-up actions.
|
|
</small>
|
|
</p>
|
|
</div>
|
|
|
|
<form id="contact-form" method="POST" action="/compliance/contact">
|
|
<!-- Name -->
|
|
<div class="mb-3">
|
|
<label for="contact-name" class="form-label fw-semibold">
|
|
Name
|
|
<span class="optional-badge">(Optional)</span>
|
|
</label>
|
|
<input
|
|
type="text"
|
|
class="form-control"
|
|
id="contact-name"
|
|
name="name"
|
|
placeholder="Enter your name"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Phone -->
|
|
<div class="mb-3">
|
|
<label for="contact-phone" class="form-label fw-semibold">
|
|
Phone Number
|
|
<span class="optional-badge">(Optional)</span>
|
|
</label>
|
|
<input
|
|
type="tel"
|
|
class="form-control"
|
|
id="contact-phone"
|
|
name="phone"
|
|
placeholder="(555) 123-4567"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Can we text? -->
|
|
<div class="mb-3">
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="can-text"
|
|
name="can_text"
|
|
value="yes"
|
|
/>
|
|
<label class="form-check-label" for="can-text">
|
|
You may send text messages to this number
|
|
</label>
|
|
</div>
|
|
<small class="text-muted ms-4 d-block mt-1">
|
|
Text messages allow for faster communication and updates
|
|
</small>
|
|
</div>
|
|
|
|
<!-- Email -->
|
|
<div class="mb-4">
|
|
<label for="contact-email" class="form-label fw-semibold">
|
|
Email Address
|
|
<span class="optional-badge">(Optional)</span>
|
|
</label>
|
|
<input
|
|
type="email"
|
|
class="form-control"
|
|
id="contact-email"
|
|
name="email"
|
|
placeholder="your.email@example.com"
|
|
/>
|
|
<div class="form-text">
|
|
We'll send you a confirmation and any updates about this request
|
|
</div>
|
|
</div>
|
|
|
|
<div class="alert alert-light border" role="alert">
|
|
<small class="text-muted">
|
|
<i class="bi bi-shield-check"></i>
|
|
Your contact information will only be used for this compliance
|
|
matter and will be kept confidential.
|
|
</small>
|
|
</div>
|
|
|
|
<!-- Navigation Buttons -->
|
|
<div class="d-flex gap-2 mt-4">
|
|
<a href="../compliance/permission" class="btn btn-outline-secondary">
|
|
Back
|
|
</a>
|
|
<a class="btn btn-primary flex-grow-1" href="process"> Continue </a>
|
|
</div>
|
|
</form>
|
|
</main>
|
|
</div>
|
|
{{ end }}
|