2026-04-03 00:12:52 +00:00
|
|
|
{{ template "rmo/layout/base.html" . }}
|
|
|
|
|
|
|
|
|
|
{{ define "title" }}Compliance Request{{ end }}
|
|
|
|
|
{{ define "extraheader" }}
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
background-color: #f8f9fa;
|
2026-04-03 14:34:46 +00:00
|
|
|
min-height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body > .container-fluid {
|
|
|
|
|
flex: 1;
|
2026-04-03 00:12:52 +00:00
|
|
|
}
|
2026-04-03 00:18:15 +00:00
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
|
background-color: #0d6efd;
|
|
|
|
|
transition: width 0.3s ease;
|
2026-04-03 00:12:52 +00:00
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ define "content" }}
|
2026-04-03 00:18:15 +00:00
|
|
|
<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>
|
2026-04-03 00:12:52 +00:00
|
|
|
|
2026-04-03 00:18:15 +00:00
|
|
|
<!-- Progress Bar -->
|
|
|
|
|
<div class="mb-4">
|
|
|
|
|
<div class="d-flex justify-content-between align-items-center mb-2">
|
2026-04-03 03:57:43 +00:00
|
|
|
<span class="small text-muted">Step 1 of 8</span>
|
2026-04-03 00:12:52 +00:00
|
|
|
</div>
|
2026-04-03 00:18:15 +00:00
|
|
|
<div class="progress" style="height: 8px;">
|
2026-04-03 00:12:52 +00:00
|
|
|
<div
|
|
|
|
|
class="progress-bar"
|
|
|
|
|
role="progressbar"
|
2026-04-03 03:57:43 +00:00
|
|
|
style="width: 12%;"
|
|
|
|
|
aria-valuenow="12"
|
2026-04-03 00:12:52 +00:00
|
|
|
aria-valuemin="0"
|
|
|
|
|
aria-valuemax="100"
|
|
|
|
|
></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-03 00:18:15 +00:00
|
|
|
<!-- Main Content -->
|
|
|
|
|
<main>
|
|
|
|
|
<h2 class="h4 mb-3">Action requested for this property</h2>
|
2026-04-03 00:12:52 +00:00
|
|
|
|
2026-04-03 00:18:15 +00:00
|
|
|
<div class="alert alert-warning" role="alert">
|
|
|
|
|
<p class="mb-2">
|
|
|
|
|
The {{ .District.Name }} has identified a possible mosquito breeding
|
|
|
|
|
source at this property during a recent inspection.
|
|
|
|
|
</p>
|
|
|
|
|
<p class="mb-0">
|
|
|
|
|
Please confirm the property address and provide any photos, access
|
|
|
|
|
details, and contact information to help us review and resolve this
|
|
|
|
|
issue quickly.
|
|
|
|
|
</p>
|
2026-04-03 00:12:52 +00:00
|
|
|
</div>
|
|
|
|
|
|
2026-04-03 00:18:15 +00:00
|
|
|
<div class="d-grid mt-4">
|
|
|
|
|
<a class="btn btn-primary btn-lg" href="compliance/address"
|
|
|
|
|
>Get Started</a
|
2026-04-03 00:12:52 +00:00
|
|
|
>
|
|
|
|
|
</div>
|
2026-04-03 00:18:15 +00:00
|
|
|
</main>
|
2026-04-03 00:12:52 +00:00
|
|
|
</div>
|
|
|
|
|
{{ end }}
|