31 lines
573 B
HTML
31 lines
573 B
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"></div>
|
|
{{ end }}
|