From 49b10a7d7e54edd20c6974a0e8010f7fb5164ff5 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 6 Feb 2026 16:10:09 +0000 Subject: [PATCH] Add prettier for formatting html files automatically Because I was wasting time doing it myself --- .prettierrc | 12 + flake.nix | 2 + lefthook.yml | 4 + rmo/template/base.html | 72 +- rmo/template/component/footer.html | 26 +- rmo/template/component/map-header.html | 4 +- rmo/template/component/map.html | 55 +- .../component/photo-upload-header.html | 252 ++--- rmo/template/component/photo-upload.html | 58 +- rmo/template/email-confirm-complete.html | 45 +- rmo/template/email-confirm.html | 60 +- rmo/template/email-subscribe-confirm.html | 47 +- rmo/template/email-subscribe.html | 53 +- rmo/template/email-unsubscribe-complete.html | 48 +- rmo/template/email-unsubscribe.html | 60 +- rmo/template/mock/district-root.html | 166 ++-- .../mock/nuisance-submit-complete.html | 345 ++++--- rmo/template/mock/nuisance.html | 602 +++++++----- rmo/template/mock/root.html | 114 ++- rmo/template/mock/water.html | 896 +++++++++++------- rmo/template/nuisance.html | 597 +++++++----- rmo/template/privacy.html | 757 ++++++++++----- rmo/template/quick-submit-complete.html | 338 ++++--- rmo/template/quick.html | 401 ++++---- .../register-notifications-complete.html | 245 +++-- rmo/template/root.html | 183 ++-- rmo/template/status-by-id.html | 254 ++--- rmo/template/submit-complete.html | 377 +++++--- rmo/template/terms.html | 98 +- rmo/template/water.html | 774 +++++++++------ 30 files changed, 4272 insertions(+), 2673 deletions(-) create mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..0ce7ddc0 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,12 @@ +{ + "plugins": ["/nix/store/6kfm5qrd2bckffxphb5ylvbg3sz1657r-prettier-plugin-go-template-0.0.15-unstable-2023-07-26/lib/node_modules/prettier-plugin-go-template/lib/index.js"], + "overrides": [ + { + "files": ["*.html"], + "options": { + "parser": "go-template", + "useTabs": true, + }, + }, + ], +} diff --git a/flake.nix b/flake.nix index ed2819ba..c907b2ee 100644 --- a/flake.nix +++ b/flake.nix @@ -26,6 +26,8 @@ pkgs.goose pkgs.gotools pkgs.lefthook + pkgs.prettier + pkgs.prettier-plugin-go-template pkgs.watchexec ]; }; diff --git a/lefthook.yml b/lefthook.yml index 003fb93d..b34ad656 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -12,3 +12,7 @@ pre-commit: glob: "*.go" run: gofmt -w {staged_files} stage_fixed: true + htmlfmt: + glob: "*.html" + run: prettier -w {staged_files} + stage_fixed: true diff --git a/rmo/template/base.html b/rmo/template/base.html index 0b8cd7ad..327dc56c 100644 --- a/rmo/template/base.html +++ b/rmo/template/base.html @@ -1,36 +1,42 @@ - + - - - - {{template "title" .}} - Report Mosquitoes Online - - - - - - - {{block "extraheader" .}} {{end}} - - - -{{template "content" .}} -{{template "footer" .}} - - + var tooltipTriggerList = [].slice.call( + document.querySelectorAll('[data-bs-toggle="tooltip"]'), + ); + var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl); + }); + console.log("Initialized ", tooltipTriggerList.length, " tooltips"); + }); + + + + {{ template "content" . }} + {{ template "footer" . }} + + diff --git a/rmo/template/component/footer.html b/rmo/template/component/footer.html index 4f119317..060bb73e 100644 --- a/rmo/template/component/footer.html +++ b/rmo/template/component/footer.html @@ -1,15 +1,15 @@ -{{define "footer"}} - -{{end}} + +{{ end }} diff --git a/rmo/template/component/map-header.html b/rmo/template/component/map-header.html index 26600df6..38a0b080 100644 --- a/rmo/template/component/map-header.html +++ b/rmo/template/component/map-header.html @@ -1,2 +1,2 @@ -{{define "map-header"}} -{{end}} +{{ define "map-header" }} +{{ end }} diff --git a/rmo/template/component/map.html b/rmo/template/component/map.html index 75e8a175..080c4785 100644 --- a/rmo/template/component/map.html +++ b/rmo/template/component/map.html @@ -1,6 +1,9 @@ -{{define "map"}} - - +{{ define "map" }} + + - -{{end}} + +{{ end }} diff --git a/rmo/template/component/photo-upload-header.html b/rmo/template/component/photo-upload-header.html index fecbdd4b..58f6f67c 100644 --- a/rmo/template/component/photo-upload-header.html +++ b/rmo/template/component/photo-upload-header.html @@ -1,126 +1,128 @@ -{{define "photo-upload-header"}} - - -{{end}} + + .photo-preview { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin-top: 15px; + } + + .photo-preview img { + width: 80px; + height: 80px; + object-fit: cover; + border-radius: 4px; + } + + +{{ end }} diff --git a/rmo/template/component/photo-upload.html b/rmo/template/component/photo-upload.html index d9fe4ecd..14553545 100644 --- a/rmo/template/component/photo-upload.html +++ b/rmo/template/component/photo-upload.html @@ -1,18 +1,44 @@ -{{define "photo-upload"}} -
- - - - -
- - -
- Take pictures of the mosquito problem area +{{ define "photo-upload" }} +
+ + + + +
+ + +
+ Take pictures of the mosquito problem area - -
- + +
+ +
-
-{{end}} +{{ end }} diff --git a/rmo/template/email-confirm-complete.html b/rmo/template/email-confirm-complete.html index 5a6b6c3f..d5559d6f 100644 --- a/rmo/template/email-confirm-complete.html +++ b/rmo/template/email-confirm-complete.html @@ -1,24 +1,23 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
-
- -
-
-
-

Thanks!

-

You've allowed emails from Report Mosquitoes Online.

-

Go ahead and close this page/tab/window whenever you're ready...

-

...or maybe check out the site

-
-
-
- -{{end}} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+
+ +
+
+
+

Thanks!

+

You've allowed emails from Report Mosquitoes Online.

+

Go ahead and close this page/tab/window whenever you're ready...

+

...or maybe check out the site

+
+
+
+{{ end }} diff --git a/rmo/template/email-confirm.html b/rmo/template/email-confirm.html index a3d32a82..ededde76 100644 --- a/rmo/template/email-confirm.html +++ b/rmo/template/email-confirm.html @@ -1,29 +1,33 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
-
- -
-
-
-
-
- - -
- -
-
-
-
- -{{end}} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+
+ +
+
+
+
+
+ + +
+ +
+
+
+
+{{ end }} diff --git a/rmo/template/email-subscribe-confirm.html b/rmo/template/email-subscribe-confirm.html index d88a5b08..a48bfced 100644 --- a/rmo/template/email-subscribe-confirm.html +++ b/rmo/template/email-subscribe-confirm.html @@ -1,24 +1,25 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
-
- -
-
-
-

Thanks!

-

You've allowed emails from Report Mosquitoes Online to {{.Email}}.

-

Go ahead and close this page/tab/window whenever you're ready...

-

...or maybe check out the site

-
-
-
- -{{end}} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+
+ +
+
+
+

Thanks!

+

+ You've allowed emails from Report Mosquitoes Online to {{ .Email }}. +

+

Go ahead and close this page/tab/window whenever you're ready...

+

...or maybe check out the site

+
+
+
+{{ end }} diff --git a/rmo/template/email-subscribe.html b/rmo/template/email-subscribe.html index a5be31f0..ee8dfda9 100644 --- a/rmo/template/email-subscribe.html +++ b/rmo/template/email-subscribe.html @@ -1,28 +1,27 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
-
- -
-
-
-
-
- -
- -
-
-
-
- -{{end}} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+
+ +
+
+
+
+
+ +
+ +
+
+
+
+{{ end }} diff --git a/rmo/template/email-unsubscribe-complete.html b/rmo/template/email-unsubscribe-complete.html index cda6cbe2..e79b54f4 100644 --- a/rmo/template/email-unsubscribe-complete.html +++ b/rmo/template/email-unsubscribe-complete.html @@ -1,23 +1,27 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
-
- -
-
-
-

Unsubscribed!

-

You will not receive any further emails from Report Mosquitoes Online.

-

If this was an accident, or you changed your mind, you can re-subscribe

-
-
-
- -{{end}} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+
+ +
+
+
+

Unsubscribed!

+

+ You will not receive any further emails from Report Mosquitoes Online. +

+

+ If this was an accident, or you changed your mind, you can + re-subscribe +

+
+
+
+{{ end }} diff --git a/rmo/template/email-unsubscribe.html b/rmo/template/email-unsubscribe.html index 34d0bcc5..bfa3f5d8 100644 --- a/rmo/template/email-unsubscribe.html +++ b/rmo/template/email-unsubscribe.html @@ -1,29 +1,33 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
-
- -
-
-
-
-
- - -
- -
-
-
-
- -{{end}} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+
+ +
+
+
+
+
+ + +
+ +
+
+
+
+{{ end }} diff --git a/rmo/template/mock/district-root.html b/rmo/template/mock/district-root.html index 82cb8a91..78dfcea2 100644 --- a/rmo/template/mock/district-root.html +++ b/rmo/template/mock/district-root.html @@ -1,86 +1,108 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} - -{{end}} -{{define "content"}} - -
- -
-
-
-
-

Report a Mosquito Problem

-

Submit a report to help reduce mosquito activity in your neighborhood.

-

Report Mosquitoes Online works with local mosquito control agencies to receive public reports. For this area, mosquito control services are provided by Delta Mosquito and Vector Control District.

- +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} + +{{ end }} +{{ define "content" }} + +
+ +
+
+
+
+

Report a Mosquito Problem

+

+ Submit a report to help reduce mosquito activity in your + neighborhood. +

+

+ Report Mosquitoes Online works with local mosquito control + agencies to receive public reports. For this area, mosquito + control services are provided by Delta Mosquito and Vector Control + District. +

+ +
-
-
- - -
-
-

How Can We Help You Today?

-
-
-
-
-
- {{ template "mosquito-color.svg" }} +
+ + +
+
+

How Can We Help You Today?

+
+
+
+
+
+ {{ template "mosquito-color.svg" }} +
+

Report Mosquito Nuisance

+

+ Report areas with high adult mosquito activity causing + discomfort or concern. +

+ Report Problem
-

Report Mosquito Nuisance

-

Report areas with high adult mosquito activity causing discomfort or concern.

- Report Problem
-
-
-
-
-
- {{ template "pond-color.svg" }} +
+
+
+
+ {{ template "pond-color.svg" }} +
+

Report Standing Water

+

+ Report any water that has been sitting for several days, where + mosquitoes can live. +

+ Report Water
-

Report Standing Water

-

Report any water that has been sitting for several days, where mosquitoes can live.

- Report Water
-
-
-
-
-
- {{ template "check-report-color.svg" }} +
+
+
+
+ {{ template "check-report-color.svg" }} +
+

Follow-up or Check Status

+

+ Check on a previous request or view current mosquito activity + in your area. +

+ Get Status
-

Follow-up or Check Status

-

Check on a previous request or view current mosquito activity in your area.

- Get Status
-
-
-
- -{{end}} + + +{{ end }} diff --git a/rmo/template/mock/nuisance-submit-complete.html b/rmo/template/mock/nuisance-submit-complete.html index f5d11bb1..09670b4c 100644 --- a/rmo/template/mock/nuisance-submit-complete.html +++ b/rmo/template/mock/nuisance-submit-complete.html @@ -1,132 +1,225 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Quick Report Complete{{end}} -{{define "extraheader"}} - - -{{end}} -{{define "content"}} -
-
-
- -
-
-

- - +{{ define "title" }}Quick Report Complete{{ end }} +{{ define "extraheader" }} + + +{{ end }} +{{ define "content" }} +
+
+
+ +
+
+

+ + + + Report Successfully Submitted +

+
+
+
+
+ Your Report ID: + {{ .ReportID|publicReportID }} +
+
+ +
+ +
+

+ + + + Get Updates +

+

+ Provide your contact information to receive updates about your + report. +

+ +
+ + +
+ +
+ + + + + + +
+
+ +
+ +
+ + + + + + + +
+
+ +
+ + +
+ You must consent to receive notifications. +
+
+
+ + +
+ + +
+
+ +
+ + +
+

+ + + + Check Your Report Status +

+

+ You can check the status of your report at any time using your + Report ID. +

+ + Check Status + +
+ +
+
+ {{ if not (eq .District nil) }} +

Your report will be handled by

+

{{ .District.Name }}

+ + {{ end }} +
+
+
+
+ + +

+ Submit Another Report +
-
-
-
- Your Report ID: - {{.ReportID|publicReportID}} -
-
- -
- -
-

- - - - Get Updates -

-

Provide your contact information to receive updates about your report.

- -
- - -
- -
- - - - - - -
-
- -
- -
- - - - - - - -
-
- -
- - -
- You must consent to receive notifications. -
-
-
- - -
- - -
-
- -
- - -
-

- - - - Check Your Report Status -

-

You can check the status of your report at any time using your Report ID.

- - Check Status - -
- -
-
- {{ if not (eq .District nil) }} -

Your report will be handled by

-

{{ .District.Name }}

- - {{ end }} -
-
-
-
- - -
-
-{{end}} +{{ end }} diff --git a/rmo/template/mock/nuisance.html b/rmo/template/mock/nuisance.html index 83d02910..4f69f5de 100644 --- a/rmo/template/mock/nuisance.html +++ b/rmo/template/mock/nuisance.html @@ -1,14 +1,14 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Nuisance{{end}} -{{define "extraheader"}} - - - - - - -{{template "photo-upload-header"}} +{{ define "title" }}Nuisance{{ end }} +{{ define "extraheader" }} + + + + + + + {{ template "photo-upload-header" }} - -{{end}} -{{define "content"}} -{{if .District}} - {{template "header" .}} -{{end}} -
-
-
-

Report Mosquito Nuisance

-

Help us identify mosquito activity in your area

-
-
- - -
- -
-
- -

Nuisance Location Information

-
-
-
-

You can select the location by address or by moving the marker on the map.

-
-
- -
-
- - -
+ +{{ end }} +{{ define "content" }} + {{ if .District }} + {{ template "header" . }} + {{ end }} +
+
+
+

Report Mosquito Nuisance

+

Help us identify mosquito activity in your area

-

You can also click on the map to mark the location precisely

- - - -
-
- {{ template "mosquito-color.svg" }} -

Mosquito Activity Information

-
-

The time when mosquitoes are active can help us identify the species and likely breeding sources.

- - -
-
- -
-
- - -
-
- - -
-
- - -
-
- - -
-
+ + + +
+
+ +

Nuisance Location Information

-
- - -
-
- - -
-
- - -
- - +
+

+ You can select the location by address or by moving the marker on + the map. +

+
+
+ +
+
+ + +
-
+

+ You can also click on the map to mark the location precisely +

+ + - -
- +
- -

Potential Mosquito Sources

+ {{ template "mosquito-color.svg" }} +

Mosquito Activity Information

-

Have you noticed any of these common mosquito breeding sources in your area?

+

+ The time when mosquitoes are active can help us identify the species + and likely breeding sources. +

-
-
-
Did you know?
-

Mosquitoes can breed in as little as a bottle cap of water! Eliminating standing water is the most effective way to reduce mosquito populations.

-
-
- -
- -
-
-
-
- -
-
Stagnant Water
-

Green pools, ponds, fountains, or birdbaths that aren't maintained

-
- - -
+ +
+
+ +
+
+ +
-
-
- - -
-
-
-
- -
-
Containers
-

Buckets, planters, toys, tires, or any items that collect rainwater

-
- - -
+
+ +
-
-
- - -
-
-
-
- -
-
Sprinklers & Gutters
-

Clogged street gutters, yard drains, or AC units that collect water

-
- - -
+
+ + +
+
+ +
- -
-
- -

Additional Information

+ +
+ +
+
+ +

Potential Mosquito Sources

+
+

+ Have you noticed any of these common mosquito breeding sources in + your area? +

+ +
+
+
Did you know?
+

+ Mosquitoes can breed in as little as a bottle cap of water! + Eliminating standing water is the most effective way to reduce + mosquito populations. +

+
+
+ +
+ +
+
+
+
+ +
+
Stagnant Water
+

+ Green pools, ponds, fountains, or birdbaths that aren't + maintained +

+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
Containers
+

+ Buckets, planters, toys, tires, or any items that collect + rainwater +

+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
Sprinklers & Gutters
+

+ Clogged street gutters, yard drains, or AC units that + collect water +

+
+ + +
+
+
+
+
+ + + +
+
+ + + {{ template "photo-upload" }} +
+
- -
-
- - + +
+
+ +

Additional Information

+
+ +
+
+ + +
- -
- -
-
-
-

Thank you for reporting this mosquito issue.

-

After submission, you'll receive a confirmation with a report ID and further information.

-
-
- - Submit Report - + +
+
+
+

+ Thank you for reporting this mosquito issue. +

+

+ After submission, you'll receive a confirmation with a report ID + and further information. +

+
+
-
- -
-{{end}} + +
+{{ end }} diff --git a/rmo/template/mock/root.html b/rmo/template/mock/root.html index 5f0f8df9..c574c377 100644 --- a/rmo/template/mock/root.html +++ b/rmo/template/mock/root.html @@ -1,62 +1,76 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
- -
- -
- - -
-
-

How Can We Help You Today?

-
-
-
-
-
- {{ template "mosquito.svg" }} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
+ +
+ +
+ + +
+
+

How Can We Help You Today?

+
+
+
+
+
+ {{ template "mosquito.svg" }} +
+

Report Mosquito Nuisance

+

+ Report areas with high adult mosquito activity causing + discomfort or concern. +

+ Report Problem
-

Report Mosquito Nuisance

-

Report areas with high adult mosquito activity causing discomfort or concern.

- Report Problem
-
-
-
-
-
- {{ template "pond.svg" }} +
+
+
+
+ {{ template "pond.svg" }} +
+

Report Standing Water

+

+ Report any water that has been sitting for several days, where + mosquitoes can live. +

+ Report Source
-

Report Standing Water

-

Report any water that has been sitting for several days, where mosquitoes can live.

- Report Source
-
-
-
-
-
- {{ template "check-report.svg" }} +
+
+
+
+ {{ template "check-report.svg" }} +
+

Follow-up or Check Status

+

+ Check on a previous request or view current mosquito activity + in your area. +

+ Get Status
-

Follow-up or Check Status

-

Check on a previous request or view current mosquito activity in your area.

- Get Status
-
-
-
- -{{end}} +
+
+{{ end }} diff --git a/rmo/template/mock/water.html b/rmo/template/mock/water.html index fb8ab1a5..662915bc 100644 --- a/rmo/template/mock/water.html +++ b/rmo/template/mock/water.html @@ -1,68 +1,68 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Standing Water{{end}} -{{define "extraheader"}} - - - - - - -{{template "photo-upload-header"}} - + .photo-preview img { + width: 80px; + height: 80px; + object-fit: cover; + border-radius: 4px; + } + .section-heading { + margin-bottom: 1.5rem; + display: flex; + align-items: center; + } + .section-heading i { + margin-right: 10px; + font-size: 1.5rem; + color: #0d6efd; + } + .submit-container { + background-color: #f8f9fa; + padding: 20px; + border-radius: 5px; + margin-top: 2rem; + } + -{{end}} -{{define "content"}} -{{if .District}} - {{template "header" .}} -{{end}} - -
-
- -
-
-

Report Standing Water

-

Help us locate and treat potential mosquito production sources in your area

-
-
- - -
- -
-
- -

Photos

-
-

Photos help us identify the severity of the issue and may contain location data that can help us find the production source.

-
- {{template "photo-upload"}} +{{ end }} +{{ define "content" }} + {{ if .District }} + {{ template "header" . }} + {{ end }} + +
+
+ +
+
+

Report Standing Water

+

+ Help us locate and treat potential mosquito production sources in + your area +

- -
-
- -

Additional Information

+ + + +
+
+ +

Photos

+
+

+ Photos help us identify the severity of the issue and may contain + location data that can help us find the production source. +

+
+ {{ template "photo-upload" }} +
-

Please provide any other information that might help us address this mosquito production source.

- -
+ + +
+
+ +

Additional Information

+
+

+ Please provide any other information that might help us address this + mosquito production source. +

+ +
+
+ + +
+
+
+ + +
+
+ +

Location

+
+

+ Please provide the location of the potential mosquito production + source. We may be able to extract this information from your photos + if they contain location data. +

- - +
+

+ You can select the location by address or by moving the marker + on the map. +

+
-
-
- - -
-
- -

Location

-
-

Please provide the location of the potential mosquito production source. We may be able to extract this information from your photos if they contain location data.

-
-
-

You can select the location by address or by moving the marker on the map.

-
-
- -
- - - - - - - - - - -
-
- + + + + + + + + + + +
+
+ - + api-key="{{ .MapboxToken }}" + > + +
+
+
+ +

+ You can also click on the map to mark the location precisely +

+ + +
+ + +
+ +
+
+ +

Source Details

+
+ +
+
+ + +
+ +
+ +
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ +

Access Information

+
+

+ Please provide any details about how to access the mosquito + source. This helps our technicians when they visit the site. +

+ +
+
+ + +
+
+ +
+
+ +
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+ +

Property Owner Information (if known)

+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
- -

You can also click on the map to mark the location precisely

- - -
- -
- - -
-
- -

Source Details

+ +
+
+
+

+ Thank you for helping us keep our community safe from + mosquito-borne illnesses. +

+

+ After submission, you will receive a confirmation with a report + ID for tracking purposes. +

+
+
- +
+ +
+
+ + +
- - - -{{end}} +{{ end }} diff --git a/rmo/template/nuisance.html b/rmo/template/nuisance.html index 2e2f08a5..5106c8c7 100644 --- a/rmo/template/nuisance.html +++ b/rmo/template/nuisance.html @@ -1,13 +1,13 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Report Nuisance{{end}} -{{define "extraheader"}} - - - - - - +{{ define "title" }}Report Nuisance{{ end }} +{{ define "extraheader" }} + + + + + + - -{{end}} -{{define "content"}} -{{if (eq .District nil)}} - {{template "header-rmo" .}} -{{else}} - {{template "header-district" .District}} -{{end}} -
-
-
-

Report Mosquito Nuisance

-

Help us identify mosquito activity in your area

-
-
- - -
- -
-
- -

Nuisance Location Information

-
-
-
-

You can select the location by address or by moving the marker on the map.

-
-
- -
-
- - -
+ +{{ end }} +{{ define "content" }} + {{ if (eq .District nil) }} + {{ template "header-rmo" . }} + {{ else }} + {{ template "header-district" .District }} + {{ end }} +
+
+
+

Report Mosquito Nuisance

+

Help us identify mosquito activity in your area

-

You can also click on the map to mark the location precisely

- - - - - - - - - - - - -
-
- {{ template "mosquito-color.svg" }} -

Mosquito Activity Information

-
-

The time when mosquitoes are active can help us identify the species and likely breeding sources.

- - -
-
- -
-
- - -
-
- - -
-
- - -
-
- - -
-
+ + + +
+
+ +

Nuisance Location Information

-
- - -
-
- - -
-
- - -
- - +
+

+ You can select the location by address or by moving the marker on + the map. +

+
+
+ +
+
+ + +
-
+

+ You can also click on the map to mark the location precisely +

+ + + + + + + + + + + - -
- +
- -

Potential Mosquito Sources

+ {{ template "mosquito-color.svg" }} +

Mosquito Activity Information

-

Have you noticed any of these common mosquito breeding sources in your area?

+

+ The time when mosquitoes are active can help us identify the species + and likely breeding sources. +

-
-
-
Did you know?
-

Mosquitoes can breed in as little as a bottle cap of water! Eliminating standing water is the most effective way to reduce mosquito populations.

-
-
- -
- -
-
-
-
- -
-
Stagnant Water
-

Green pools, ponds, fountains, or birdbaths that aren't maintained

-
- - -
+ +
+
+ +
+
+ +
-
-
- - -
-
-
-
- -
-
Containers
-

Buckets, planters, toys, tires, or any items that collect rainwater

-
- - -
+
+ +
-
-
- - -
-
-
-
- -
-
Sprinklers & Gutters
-

Clogged street gutters, yard drains, or AC units that collect water

-
- - -
+
+ + +
+
+ +
+ +
+
+ + +
+
+ +
- - - + +
-
-
- -

Additional Information

+ +
+ +
+
+ +

Potential Mosquito Sources

+
+

+ Have you noticed any of these common mosquito breeding sources in + your area? +

+ +
+
+
Did you know?
+

+ Mosquitoes can breed in as little as a bottle cap of water! + Eliminating standing water is the most effective way to reduce + mosquito populations. +

+
+
+ +
+ +
+
+
+
+ +
+
Stagnant Water
+

+ Green pools, ponds, fountains, or birdbaths that aren't + maintained +

+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
Containers
+

+ Buckets, planters, toys, tires, or any items that collect + rainwater +

+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
Sprinklers & Gutters
+

+ Clogged street gutters, yard drains, or AC units that + collect water +

+
+ + +
+
+
+
+
+ +
+
+ + + +
+
- -
-
- - + +
+
+ +

Additional Information

+
+ +
+
+ + +
- -
- -
-
-
-

Thank you for reporting this mosquito issue.

-

After submission, you'll receive a confirmation with a report ID and further information.

-
-
- + +
+
+
+

+ Thank you for reporting this mosquito issue. +

+

+ After submission, you'll receive a confirmation with a report ID + and further information. +

+
+
+ +
-
- -
-{{end}} + +
+{{ end }} diff --git a/rmo/template/privacy.html b/rmo/template/privacy.html index 543ca5bb..4ee48999 100644 --- a/rmo/template/privacy.html +++ b/rmo/template/privacy.html @@ -1,211 +1,546 @@ -{{template "base.html" .}} -{{define "title"}}Privacy Policy{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} -
-

Privacy Policy

-

Last updated: January 20, 2026

-

This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.

-

We use Your Personal Data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy.

-

Interpretation and Definitions

-

Interpretation

-

The words whose initial letters are capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.

-

Definitions

-

For the purposes of this Privacy Policy:

-
    -
  • -

    Account means a unique account created for You to access our Service or parts of our Service.

    -
  • -
  • -

    Affiliate means an entity that controls, is controlled by, or is under common control with a party, where "control" means ownership of 50% or more of the shares, equity interest or other securities entitled to vote for election of directors or other managing authority.

    -
  • -
  • -

    Company (referred to as either "the Company", "We", "Us" or "Our" in this Privacy Policy) refers to {{.Company}}, {{.Address}}

    -
  • -
  • -

    Cookies are small files that are placed on Your computer, mobile device or any other device by a website, containing the details of Your browsing history on that website among its many uses.

    -
  • -
  • -

    Country refers to: Arizona, United States

    -
  • -
  • -

    Device means any device that can access the Service such as a computer, a cell phone or a digital tablet.

    -
  • -
  • -

    Personal Data (or "Personal Information") is any information that relates to an identified or identifiable individual.

    -

    We use "Personal Data" and "Personal Information" interchangeably unless a law uses a specific term.

    -
  • -
  • -

    Service refers to the Website.

    -
  • -
  • -

    Service Provider means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used.

    -
  • -
  • -

    Usage Data refers to data collected automatically, either generated by the use of the Service or from the Service infrastructure itself (for example, the duration of a page visit).

    -
  • -
  • -

    Website refers to {{.Site}} accessible from {{.URLReport}}.

    -
  • -
  • -

    You means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable.

    -
  • -
-

Collecting and Using Your Personal Data

-

Types of Data Collected

-

Personal Data

-

While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You. Personally identifiable information may include, but is not limited to:

-
    -
  • Email address
  • -
  • First name and last name
  • -
  • Phone number
  • -
  • Address, State, Province, ZIP/Postal code, City
  • -
-

Usage Data

-

Usage Data is collected automatically when using the Service.

-

Usage Data may include information such as Your Device's Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data.

-

When You access the Service by or through a mobile device, We may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device's unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data.

-

We may also collect information that Your browser sends whenever You visit Our Service or when You access the Service by or through a mobile device.

-

Tracking Technologies and Cookies

-

We use Cookies and similar tracking technologies to track the activity on Our Service and store certain information. Tracking technologies We use include beacons, tags, and scripts to collect and track information and to improve and analyze Our Service. The technologies We use may include:

-
    -
  • Cookies or Browser Cookies. A cookie is a small file placed on Your Device. You can instruct Your browser to refuse all Cookies or to indicate when a Cookie is being sent. However, if You do not accept Cookies, You may not be able to use some parts of our Service.
  • -
-

Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on Your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close Your web browser.

-

Where required by law, we use non-essential cookies (such as analytics, advertising, and remarketing cookies) only with Your consent. You can withdraw or change Your consent at any time using Our cookie preferences tool (if available) or through Your browser/device settings. Withdrawing consent does not affect the lawfulness of processing based on consent before its withdrawal.

-

We use both Session and Persistent Cookies for the purposes set out below:

-
    -
  • -

    Necessary / Essential Cookies

    -

    Type: Session Cookies

    -

    Administered by: Us

    -

    Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and We only use these Cookies to provide You with those services.

    -
  • -
  • -

    Functionality Cookies

    -

    Type: Persistent Cookies

    -

    Administered by: Us

    -

    Purpose: These Cookies allow Us to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website.

    -
  • -
-

For more information about the cookies we use and your choices regarding cookies, please visit our Cookies Policy or the Cookies section of Our Privacy Policy.

-

Use of Your Personal Data

-

The Company may use Personal Data for the following purposes:

-
    -
  • -

    To provide and maintain our Service, including to monitor the usage of our Service.

    -
  • -
  • -

    To manage Your Account: to manage Your registration as a user of the Service. The Personal Data You provide can give You access to different functionalities of the Service that are available to You as a registered user.

    -
  • -
  • -

    For the performance of a contract: the development, compliance and undertaking of the purchase contract for the products, items or services You have purchased or of any other contract with Us through the Service.

    -
  • -
  • -

    To contact You: To contact You by email, telephone calls, SMS, or other equivalent forms of electronic communication, such as a mobile application's push notifications regarding updates or informative communications related to the functionalities, products or contracted services, including the security updates, when necessary or reasonable for their implementation.

    -
  • -
  • -

    To provide You with news, special offers, and general information about other goods, services and events which We offer that are similar to those that you have already purchased or inquired about unless You have opted not to receive such information.

    -
  • -
  • -

    To manage Your requests: To attend and manage Your requests to Us.

    -
  • -
  • -

    For business transfers: We may use Your Personal Data to evaluate or conduct a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of Our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which Personal Data held by Us about our Service users is among the assets transferred.

    -
  • -
  • -

    For other purposes: We may use Your information for other purposes, such as data analysis, identifying usage trends, determining the effectiveness of our promotional campaigns and to evaluate and improve our Service, products, services, marketing and your experience.

    -
  • -
-

We may share Your Personal Data in the following situations:

-
    -
  • With Service Providers: We may share Your Personal Data with Service Providers to monitor and analyze the use of our Service, to contact You.
  • -
  • For business transfers: We may share or transfer Your Personal Data in connection with, or during negotiations of, any merger, sale of Company assets, financing, or acquisition of all or a portion of Our business to another company.
  • -
  • With Affiliates: We may share Your Personal Data with Our affiliates, in which case we will require those affiliates to honor this Privacy Policy. Affiliates include Our parent company and any other subsidiaries, joint venture partners or other companies that We control or that are under common control with Us.
  • -
  • With business partners: We may share Your Personal Data with Our business partners to offer You certain products, services or promotions.
  • -
  • With other users: If Our Service offers public areas, when You share Personal Data or otherwise interact in the public areas with other users, such information may be viewed by all users and may be publicly distributed outside.
  • -
  • With Your consent: We may disclose Your Personal Data for any other purpose with Your consent.
  • -
-

Retention of Your Personal Data

-

The Company will retain Your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use Your Personal Data to the extent necessary to comply with our legal obligations (for example, if We are required to retain Your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies.

-

Where possible, We apply shorter retention periods and/or reduce identifiability by deleting, aggregating, or anonymizing data. Unless otherwise stated, the retention periods below are maximum periods ("up to") and We may delete or anonymize data sooner when it is no longer needed for the relevant purpose. We apply different retention periods to different categories of Personal Data based on the purpose of processing and legal obligations:

-
    -
  • -

    Account Information

    -
      -
    • User Accounts: retained for the duration of your account relationship plus up to 24 months after account closure to handle any post-termination issues or resolve disputes.
    • -
    -
  • -
  • -

    Customer Support Data

    -
      -
    • Support tickets and correspondence: up to 24 months from the date of ticket closure to resolve follow-up inquiries, track service quality, and defend against potential legal claims
    • -
    • Chat transcripts: up to 24 months for quality assurance and staff training purposes.
    • -
    -
  • -
  • -

    Usage Data

    -
      -
    • -

      Website analytics data (cookies, IP addresses, device identifiers): up to 24 months from the date of collection, which allows us to analyze trends while respecting privacy principles.

      -
    • -
    • -

      Server logs (IP addresses, access times): up to 24 months for security monitoring and troubleshooting purposes.

      -
    • -
    -
  • -
-

Usage Data is retained in accordance with the retention periods described above, and may be retained longer only where necessary for security, fraud prevention, or legal compliance.

-

We may retain Personal Data beyond the periods stated above for different reasons:

-
    -
  • Legal obligation: We are required by law to retain specific data (e.g., financial records for tax authorities).
  • -
  • Legal claims: Data is necessary to establish, exercise, or defend legal claims.
  • -
  • Your explicit request: You ask Us to retain specific information.
  • -
  • Technical limitations: Data exists in backup systems that are scheduled for routine deletion.
  • -
-

You may request information about how long We will retain Your Personal Data by contacting Us.

-

When retention periods expire, We securely delete or anonymize Personal Data according to the following procedures:

-
    -
  • Deletion: Personal Data is removed from Our systems and no longer actively processed.
  • -
  • Backup retention: Residual copies may remain in encrypted backups for a limited period consistent with our backup retention schedule and are not restored except where necessary for security, disaster recovery, or legal compliance.
  • -
  • Anonymization: In some cases, We convert Personal Data into anonymous statistical data that cannot be linked back to You. This anonymized data may be retained indefinitely for research and analytics.
  • -
-

Transfer of Your Personal Data

-

Your information, including Personal Data, is processed at the Company's operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdiction where the data protection laws may differ from those from Your jurisdiction.

-

Where required by applicable law, We will ensure that international transfers of Your Personal Data are subject to appropriate safeguards and supplementary measures where appropriate. The Company will take all steps reasonably necessary to ensure that Your data is treated securely and in accordance with this Privacy Policy and no transfer of Your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of Your data and other personal information.

-

Delete Your Personal Data

-

You have the right to delete or request that We assist in deleting the Personal Data that We have collected about You.

-

Our Service may give You the ability to delete certain information about You from within the Service.

-

You may update, amend, or delete Your information at any time by signing in to Your Account, if you have one, and visiting the account settings section that allows you to manage Your personal information. You may also contact Us to request access to, correct, or delete any Personal Data that You have provided to Us.

-

Please note, however, that We may need to retain certain information when we have a legal obligation or lawful basis to do so.

-

Disclosure of Your Personal Data

-

Business Transactions

-

If the Company is involved in a merger, acquisition or asset sale, Your Personal Data may be transferred. We will provide notice before Your Personal Data is transferred and becomes subject to a different Privacy Policy.

-

Law enforcement

-

Under certain circumstances, the Company may be required to disclose Your Personal Data if required to do so by law or in response to valid requests by public authorities (e.g. a court or a government agency).

-

Other legal requirements

-

The Company may disclose Your Personal Data in the good faith belief that such action is necessary to:

-
    -
  • Comply with a legal obligation
  • -
  • Protect and defend the rights or property of the Company
  • -
  • Prevent or investigate possible wrongdoing in connection with the Service
  • -
  • Protect the personal safety of Users of the Service or the public
  • -
  • Protect against legal liability
  • -
-

Security of Your Personal Data

-

The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While We strive to use commercially reasonable means to protect Your Personal Data, We cannot guarantee its absolute security.

-

Links to Other Websites

-

Our Service may contain links to other websites that are not operated by Us. If You click on a third party link, You will be directed to that third party's site. We strongly advise You to review the Privacy Policy of every site You visit.

-

We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.

-

Changes to this Privacy Policy

-

We may update Our Privacy Policy from time to time. We will notify You of any changes by posting the new Privacy Policy on this page.

-

We will let You know via email and/or a prominent notice on Our Service, prior to the change becoming effective and update the "Last updated" date at the top of this Privacy Policy.

-

You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.

-

Contact Us

-

If you have any questions about this Privacy Policy, You can contact us:

-
    -
  • By email: privacy@gleipnir.technology
  • -
-
-{{end}} +{{ template "base.html" . }} +{{ define "title" }}Privacy Policy{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} +
+

Privacy Policy

+

Last updated: January 20, 2026

+

+ This Privacy Policy describes Our policies and procedures on the + collection, use and disclosure of Your information when You use the + Service and tells You about Your privacy rights and how the law protects + You. +

+

+ We use Your Personal Data to provide and improve the Service. By using the + Service, You agree to the collection and use of information in accordance + with this Privacy Policy. +

+

Interpretation and Definitions

+

Interpretation

+

+ The words whose initial letters are capitalized have meanings defined + under the following conditions. The following definitions shall have the + same meaning regardless of whether they appear in singular or in plural. +

+

Definitions

+

For the purposes of this Privacy Policy:

+
    +
  • +

    + Account means a unique account created for You to + access our Service or parts of our Service. +

    +
  • +
  • +

    + Affiliate means an entity that controls, is + controlled by, or is under common control with a party, where + "control" means ownership of 50% or more of the shares, + equity interest or other securities entitled to vote for election of + directors or other managing authority. +

    +
  • +
  • +

    + Company (referred to as either "the + Company", "We", "Us" or "Our" in + this Privacy Policy) refers to {{ .Company }}, + {{ .Address }} +

    +
  • +
  • +

    + Cookies are small files that are placed on Your + computer, mobile device or any other device by a website, containing + the details of Your browsing history on that website among its many + uses. +

    +
  • +
  • +

    Country refers to: Arizona, United States

    +
  • +
  • +

    + Device means any device that can access the Service + such as a computer, a cell phone or a digital tablet. +

    +
  • +
  • +

    + Personal Data (or "Personal Information") + is any information that relates to an identified or identifiable + individual. +

    +

    + We use "Personal Data" and "Personal Information" + interchangeably unless a law uses a specific term. +

    +
  • +
  • +

    Service refers to the Website.

    +
  • +
  • +

    + Service Provider means any natural or legal person + who processes the data on behalf of the Company. It refers to + third-party companies or individuals employed by the Company to + facilitate the Service, to provide the Service on behalf of the + Company, to perform services related to the Service or to assist the + Company in analyzing how the Service is used. +

    +
  • +
  • +

    + Usage Data refers to data collected automatically, + either generated by the use of the Service or from the Service + infrastructure itself (for example, the duration of a page visit). +

    +
  • +
  • +

    + Website refers to {{ .Site }} accessible from + {{ .URLReport }}. +

    +
  • +
  • +

    + You means the individual accessing or using the + Service, or the company, or other legal entity on behalf of which such + individual is accessing or using the Service, as applicable. +

    +
  • +
+

Collecting and Using Your Personal Data

+

Types of Data Collected

+

Personal Data

+

+ While using Our Service, We may ask You to provide Us with certain + personally identifiable information that can be used to contact or + identify You. Personally identifiable information may include, but is not + limited to: +

+
    +
  • Email address
  • +
  • First name and last name
  • +
  • Phone number
  • +
  • Address, State, Province, ZIP/Postal code, City
  • +
+

Usage Data

+

Usage Data is collected automatically when using the Service.

+

+ Usage Data may include information such as Your Device's Internet Protocol + address (e.g. IP address), browser type, browser version, the pages of our + Service that You visit, the time and date of Your visit, the time spent on + those pages, unique device identifiers and other diagnostic data. +

+

+ When You access the Service by or through a mobile device, We may collect + certain information automatically, including, but not limited to, the type + of mobile device You use, Your mobile device's unique ID, the IP address + of Your mobile device, Your mobile operating system, the type of mobile + Internet browser You use, unique device identifiers and other diagnostic + data. +

+

+ We may also collect information that Your browser sends whenever You visit + Our Service or when You access the Service by or through a mobile device. +

+

Tracking Technologies and Cookies

+

+ We use Cookies and similar tracking technologies to track the activity on + Our Service and store certain information. Tracking technologies We use + include beacons, tags, and scripts to collect and track information and to + improve and analyze Our Service. The technologies We use may include: +

+
    +
  • + Cookies or Browser Cookies. A cookie is a small file + placed on Your Device. You can instruct Your browser to refuse all + Cookies or to indicate when a Cookie is being sent. However, if You do + not accept Cookies, You may not be able to use some parts of our + Service. +
  • +
+

+ Cookies can be "Persistent" or "Session" Cookies. + Persistent Cookies remain on Your personal computer or mobile device when + You go offline, while Session Cookies are deleted as soon as You close + Your web browser. +

+

+ Where required by law, we use non-essential cookies (such as analytics, + advertising, and remarketing cookies) only with Your consent. You can + withdraw or change Your consent at any time using Our cookie preferences + tool (if available) or through Your browser/device settings. Withdrawing + consent does not affect the lawfulness of processing based on consent + before its withdrawal. +

+

+ We use both Session and Persistent Cookies for the purposes set out below: +

+
    +
  • +

    Necessary / Essential Cookies

    +

    Type: Session Cookies

    +

    Administered by: Us

    +

    + Purpose: These Cookies are essential to provide You with services + available through the Website and to enable You to use some of its + features. They help to authenticate users and prevent fraudulent use + of user accounts. Without these Cookies, the services that You have + asked for cannot be provided, and We only use these Cookies to provide + You with those services. +

    +
  • +
  • +

    Functionality Cookies

    +

    Type: Persistent Cookies

    +

    Administered by: Us

    +

    + Purpose: These Cookies allow Us to remember choices You make when You + use the Website, such as remembering your login details or language + preference. The purpose of these Cookies is to provide You with a more + personal experience and to avoid You having to re-enter your + preferences every time You use the Website. +

    +
  • +
+

+ For more information about the cookies we use and your choices regarding + cookies, please visit our Cookies Policy or the Cookies section of Our + Privacy Policy. +

+

Use of Your Personal Data

+

The Company may use Personal Data for the following purposes:

+
    +
  • +

    + To provide and maintain our Service, including to + monitor the usage of our Service. +

    +
  • +
  • +

    + To manage Your Account: to manage Your registration + as a user of the Service. The Personal Data You provide can give You + access to different functionalities of the Service that are available + to You as a registered user. +

    +
  • +
  • +

    + For the performance of a contract: the development, + compliance and undertaking of the purchase contract for the products, + items or services You have purchased or of any other contract with Us + through the Service. +

    +
  • +
  • +

    + To contact You: To contact You by email, telephone + calls, SMS, or other equivalent forms of electronic communication, + such as a mobile application's push notifications regarding updates or + informative communications related to the functionalities, products or + contracted services, including the security updates, when necessary or + reasonable for their implementation. +

    +
  • +
  • +

    + To provide You with news, special offers, and general + information about other goods, services and events which We offer that + are similar to those that you have already purchased or inquired about + unless You have opted not to receive such information. +

    +
  • +
  • +

    + To manage Your requests: To attend and manage Your + requests to Us. +

    +
  • +
  • +

    + For business transfers: We may use Your Personal Data + to evaluate or conduct a merger, divestiture, restructuring, + reorganization, dissolution, or other sale or transfer of some or all + of Our assets, whether as a going concern or as part of bankruptcy, + liquidation, or similar proceeding, in which Personal Data held by Us + about our Service users is among the assets transferred. +

    +
  • +
  • +

    + For other purposes: We may use Your information for + other purposes, such as data analysis, identifying usage trends, + determining the effectiveness of our promotional campaigns and to + evaluate and improve our Service, products, services, marketing and + your experience. +

    +
  • +
+

We may share Your Personal Data in the following situations:

+
    +
  • + With Service Providers: We may share Your Personal Data + with Service Providers to monitor and analyze the use of our Service, to + contact You. +
  • +
  • + For business transfers: We may share or transfer Your + Personal Data in connection with, or during negotiations of, any merger, + sale of Company assets, financing, or acquisition of all or a portion of + Our business to another company. +
  • +
  • + With Affiliates: We may share Your Personal Data with + Our affiliates, in which case we will require those affiliates to honor + this Privacy Policy. Affiliates include Our parent company and any other + subsidiaries, joint venture partners or other companies that We control + or that are under common control with Us. +
  • +
  • + With business partners: We may share Your Personal Data + with Our business partners to offer You certain products, services or + promotions. +
  • +
  • + With other users: If Our Service offers public areas, + when You share Personal Data or otherwise interact in the public areas + with other users, such information may be viewed by all users and may be + publicly distributed outside. +
  • +
  • + With Your consent: We may disclose Your Personal Data + for any other purpose with Your consent. +
  • +
+

Retention of Your Personal Data

+

+ The Company will retain Your Personal Data only for as long as is + necessary for the purposes set out in this Privacy Policy. We will retain + and use Your Personal Data to the extent necessary to comply with our + legal obligations (for example, if We are required to retain Your data to + comply with applicable laws), resolve disputes, and enforce our legal + agreements and policies. +

+

+ Where possible, We apply shorter retention periods and/or reduce + identifiability by deleting, aggregating, or anonymizing data. Unless + otherwise stated, the retention periods below are maximum periods + ("up to") and We may delete or anonymize data sooner when it is + no longer needed for the relevant purpose. We apply different retention + periods to different categories of Personal Data based on the purpose of + processing and legal obligations: +

+
    +
  • +

    Account Information

    +
      +
    • + User Accounts: retained for the duration of your account + relationship plus up to 24 months after account closure to handle + any post-termination issues or resolve disputes. +
    • +
    +
  • +
  • +

    Customer Support Data

    +
      +
    • + Support tickets and correspondence: up to 24 months from the date of + ticket closure to resolve follow-up inquiries, track service + quality, and defend against potential legal claims +
    • +
    • + Chat transcripts: up to 24 months for quality assurance and staff + training purposes. +
    • +
    +
  • +
  • +

    Usage Data

    +
      +
    • +

      + Website analytics data (cookies, IP addresses, device + identifiers): up to 24 months from the date of collection, which + allows us to analyze trends while respecting privacy principles. +

      +
    • +
    • +

      + Server logs (IP addresses, access times): up to 24 months for + security monitoring and troubleshooting purposes. +

      +
    • +
    +
  • +
+

+ Usage Data is retained in accordance with the retention periods described + above, and may be retained longer only where necessary for security, fraud + prevention, or legal compliance. +

+

+ We may retain Personal Data beyond the periods stated above for different + reasons: +

+
    +
  • + Legal obligation: We are required by law to retain specific data (e.g., + financial records for tax authorities). +
  • +
  • + Legal claims: Data is necessary to establish, exercise, or defend legal + claims. +
  • +
  • Your explicit request: You ask Us to retain specific information.
  • +
  • + Technical limitations: Data exists in backup systems that are scheduled + for routine deletion. +
  • +
+

+ You may request information about how long We will retain Your Personal + Data by contacting Us. +

+

+ When retention periods expire, We securely delete or anonymize Personal + Data according to the following procedures: +

+
    +
  • + Deletion: Personal Data is removed from Our systems and no longer + actively processed. +
  • +
  • + Backup retention: Residual copies may remain in encrypted backups for a + limited period consistent with our backup retention schedule and are not + restored except where necessary for security, disaster recovery, or + legal compliance. +
  • +
  • + Anonymization: In some cases, We convert Personal Data into anonymous + statistical data that cannot be linked back to You. This anonymized data + may be retained indefinitely for research and analytics. +
  • +
+

Transfer of Your Personal Data

+

+ Your information, including Personal Data, is processed at the Company's + operating offices and in any other places where the parties involved in + the processing are located. It means that this information may be + transferred to — and maintained on — computers located outside of Your + state, province, country or other governmental jurisdiction where the data + protection laws may differ from those from Your jurisdiction. +

+

+ Where required by applicable law, We will ensure that international + transfers of Your Personal Data are subject to appropriate safeguards and + supplementary measures where appropriate. The Company will take all steps + reasonably necessary to ensure that Your data is treated securely and in + accordance with this Privacy Policy and no transfer of Your Personal Data + will take place to an organization or a country unless there are adequate + controls in place including the security of Your data and other personal + information. +

+

Delete Your Personal Data

+

+ You have the right to delete or request that We assist in deleting the + Personal Data that We have collected about You. +

+

+ Our Service may give You the ability to delete certain information about + You from within the Service. +

+

+ You may update, amend, or delete Your information at any time by signing + in to Your Account, if you have one, and visiting the account settings + section that allows you to manage Your personal information. You may also + contact Us to request access to, correct, or delete any Personal Data that + You have provided to Us. +

+

+ Please note, however, that We may need to retain certain information when + we have a legal obligation or lawful basis to do so. +

+

Disclosure of Your Personal Data

+

Business Transactions

+

+ If the Company is involved in a merger, acquisition or asset sale, Your + Personal Data may be transferred. We will provide notice before Your + Personal Data is transferred and becomes subject to a different Privacy + Policy. +

+

Law enforcement

+

+ Under certain circumstances, the Company may be required to disclose Your + Personal Data if required to do so by law or in response to valid requests + by public authorities (e.g. a court or a government agency). +

+

Other legal requirements

+

+ The Company may disclose Your Personal Data in the good faith belief that + such action is necessary to: +

+
    +
  • Comply with a legal obligation
  • +
  • Protect and defend the rights or property of the Company
  • +
  • + Prevent or investigate possible wrongdoing in connection with the + Service +
  • +
  • Protect the personal safety of Users of the Service or the public
  • +
  • Protect against legal liability
  • +
+

Security of Your Personal Data

+

+ The security of Your Personal Data is important to Us, but remember that + no method of transmission over the Internet, or method of electronic + storage is 100% secure. While We strive to use commercially reasonable + means to protect Your Personal Data, We cannot guarantee its absolute + security. +

+

Links to Other Websites

+

+ Our Service may contain links to other websites that are not operated by + Us. If You click on a third party link, You will be directed to that third + party's site. We strongly advise You to review the Privacy Policy of every + site You visit. +

+

+ We have no control over and assume no responsibility for the content, + privacy policies or practices of any third party sites or services. +

+

Changes to this Privacy Policy

+

+ We may update Our Privacy Policy from time to time. We will notify You of + any changes by posting the new Privacy Policy on this page. +

+

+ We will let You know via email and/or a prominent notice on Our Service, + prior to the change becoming effective and update the "Last + updated" date at the top of this Privacy Policy. +

+

+ You are advised to review this Privacy Policy periodically for any + changes. Changes to this Privacy Policy are effective when they are posted + on this page. +

+

Contact Us

+

+ If you have any questions about this Privacy Policy, You can contact us: +

+
    +
  • By email: privacy@gleipnir.technology
  • +
+
+{{ end }} diff --git a/rmo/template/quick-submit-complete.html b/rmo/template/quick-submit-complete.html index 333059d6..62892e98 100644 --- a/rmo/template/quick-submit-complete.html +++ b/rmo/template/quick-submit-complete.html @@ -1,130 +1,228 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Quick Report Complete{{end}} -{{define "extraheader"}} - - -{{end}} -{{define "content"}} -
-
-
- -
-
-

- - - - Report Successfully Submitted -

-
-
-
-

Thank you for helping us control mosquito populations in your area!

-
- Your Report ID: - {{.ReportID|publicReportID}} +{{ define "title" }}Quick Report Complete{{ end }} +{{ define "extraheader" }} + + +{{ end }} +{{ define "content" }} +
+
+
+ +
+
+

+ + + + Report Successfully Submitted +

+
+
+
+

+ Thank you for helping us control mosquito populations in your + area! +

+
+ Your Report ID: + {{ .ReportID|publicReportID }} +
+

Please save this ID for your reference.

+ {{ if not (eq .District nil) }} +

Your report has been assigned to

+

{{ .District.Name }}

+ + {{ end }}
-

Please save this ID for your reference.

- {{ if not (eq .District nil) }} -

Your report has been assigned to

-

{{ .District.Name }}

- - {{ end }} -
- -
- - -
-

- - - - Check Your Report Status -

-

You can check the status of your report at any time using your Report ID.

- - Check Status - -
- -
- - -
-

- - - - Get Updates -

-

Provide your contact information to receive updates about your report.

- -
- - -
- -
- - - - - - + +
+ + +
+

+ + + + Check Your Report Status +

+

+ You can check the status of your report at any time using your + Report ID. +

+ + Check Status + +
+ +
+ + +
+

+ + + + Get Updates +

+

+ Provide your contact information to receive updates about your + report. +

+ + + + +
+ +
+ + + + + + +
-
- -
- -
- - - - - - - + +
+ +
+ + + + + + + +
-
- -
- - -
- You must consent to receive notifications. + +
+ + +
+ You must consent to receive notifications. +
-
- - - + + + +
-
- - -
-
-{{end}} +{{ end }} diff --git a/rmo/template/quick.html b/rmo/template/quick.html index 7647815a..2c15ccb9 100644 --- a/rmo/template/quick.html +++ b/rmo/template/quick.html @@ -1,193 +1,240 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Quick Report{{end}} -{{define "extraheader"}} -{{template "photo-upload-header"}} - - -{{end}} -{{define "content"}} - -
-
-
-
-
-

Quick Mosquito Report

+ +{{ end }} +{{ define "content" }} + +
+
+
+
+
+

Quick Mosquito Report

- -
- -
- - - - - Requesting your location... - - - -
+ + + +
+ + + + + Requesting your location... + + + +
- -
- {{template "photo-upload"}} -
+ +
+ {{ template "photo-upload" }} +
- -
- - -
+ +
+ + +
- - -
+ + + +
-
-
+ - -
-
-
-

Submitting your report...

+ +
+
+
+

Submitting your report...

+
-
-{{end}} +{{ end }} diff --git a/rmo/template/register-notifications-complete.html b/rmo/template/register-notifications-complete.html index ead7b9b7..4a3f4d15 100644 --- a/rmo/template/register-notifications-complete.html +++ b/rmo/template/register-notifications-complete.html @@ -1,95 +1,172 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Notification Request Complete{{end}} -{{define "extraheader"}} - - -{{end}} -{{define "content"}} -
-
-
- -
-
-

- - - - Notifications Registered -

-
-
-
-
- - +{{ define "title" }}Notification Request Complete{{ end }} +{{ define "extraheader" }} + + +{{ end }} +{{ define "content" }} +
+
+
+ +
+
+

+ + -

-

Thank You!

-

Your contact information has been successfully registered for report updates.

-
- Report ID: - {{.ReportID|publicReportID}} -
+ Notifications Registered +
- -
- - -
-
- - - - - What to Expect -
-
    -
  • - - - +
    +
    +
    + + - A confirmation message has been sent to your contact information. -
  • -
  • - - - - +
+

Thank You!

+

+ Your contact information has been successfully registered for + report updates. +

+
+ Report ID: + {{ .ReportID|publicReportID }} +
+
+ +
+ + +
+
+ + + - You will receive updates when: -
    -
  • Your report is assigned to a specialist
  • -
  • A site visit is scheduled
  • -
  • Treatment or remediation is completed
  • -
  • The case is resolved
  • -
- -
  • - - + What to Expect +
  • +
      +
    • + + + + + A confirmation message has been sent to your contact + information. +
    • +
    • + + + + + + You will receive updates when: +
        +
      • Your report is assigned to a specialist
      • +
      • A site visit is scheduled
      • +
      • Treatment or remediation is completed
      • +
      • The case is resolved
      • +
      +
    • +
    • + + + + You can check your report status anytime using your Report ID. +
    • +
    +
    + + + - - -
    - - - - - Check Report Status - + Check Report Status + +
    -
    -{{end}} +{{ end }} diff --git a/rmo/template/root.html b/rmo/template/root.html index 1c0f4e64..98abd7b6 100644 --- a/rmo/template/root.html +++ b/rmo/template/root.html @@ -1,84 +1,105 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Main{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} - -
    - {{ if eq .District nil }} - -
    - -
    - {{ else }} - -
    -
    -
    -
    -

    Report a Mosquito Problem

    -

    Submit a report to help reduce mosquito activity in your neighborhood.

    -

    Report Mosquitoes Online works with local mosquito control agencies to receive public reports.

    - {{ if not (eq .District nil) }} -

    For this area, mosquito control services are provided by

    -

    {{.District.Name}}

    - - {{ end }} +{{ define "title" }}Main{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} + +
    + {{ if eq .District nil }} + +
    + +
    + {{ else }} + +
    +
    +
    +
    +

    Report a Mosquito Problem

    +

    + Submit a report to help reduce mosquito activity in your + neighborhood. +

    +

    + Report Mosquitoes Online works with local mosquito control + agencies to receive public reports. +

    + {{ if not (eq .District nil) }} +

    + For this area, mosquito control services are provided by +

    +

    {{ .District.Name }}

    + + {{ end }} +
    +
    +
    +
    + {{ end }} + + + +
    +
    +

    How Can We Help You Today?

    +
    +
    +
    +
    +
    + {{ template "mosquito-color.svg" }} +
    +

    Report Mosquito Nuisance

    +

    + Report areas with high adult mosquito activity causing + discomfort or concern. +

    + Report Problem +
    +
    +
    +
    +
    +
    +
    + {{ template "pond-color.svg" }} +
    +

    Report Standing Water

    +

    + Report any water that has been sitting for several days, where + mosquitoes can live. +

    + Report Source +
    +
    +
    +
    +
    +
    +
    + {{ template "check-report-color.svg" }} +
    +

    Follow-up or Check Status

    +

    + Check on a previous request or view current mosquito activity + in your area. +

    + Get Status +
    +
    +
    -
    -
    - {{ end }} - - -
    -
    -

    How Can We Help You Today?

    -
    -
    -
    -
    -
    - {{ template "mosquito-color.svg" }} -
    -

    Report Mosquito Nuisance

    -

    Report areas with high adult mosquito activity causing discomfort or concern.

    - Report Problem -
    -
    -
    -
    -
    -
    -
    - {{ template "pond-color.svg" }} -
    -

    Report Standing Water

    -

    Report any water that has been sitting for several days, where mosquitoes can live.

    - Report Source -
    -
    -
    -
    -
    -
    -
    - {{ template "check-report-color.svg" }} -
    -

    Follow-up or Check Status

    -

    Check on a previous request or view current mosquito activity in your area.

    - Get Status -
    -
    -
    - -
    - -
    -
    -
    - -{{end}} + + +{{ end }} diff --git a/rmo/template/status-by-id.html b/rmo/template/status-by-id.html index 41f8ccb8..b2f449c1 100644 --- a/rmo/template/status-by-id.html +++ b/rmo/template/status-by-id.html @@ -1,45 +1,45 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Status of report {{.Report.ID|publicReportID}}{{end}} -{{define "extraheader"}} - - - +{{ define "title" }}Status of report {{ .Report.ID|publicReportID }}{{ end }} +{{ define "extraheader" }} + + + -{{end}} -{{define "content"}} -{{if (eq .District nil)}} - {{template "header-rmo" .}} -{{else}} - {{template "header-district" .District}} -{{end}} -
    - -
    -
    -
    Report {{.Report.ID|publicReportID}}
    - {{.Report.Status}} -
    -
    -
    -
    - Type: - {{.Report.Type}} -
    -
    - Created: - {{.Report.Created|timeSince}} -
    -
    - District: - {{if (eq .District nil)}}Unknown{{else}}{{.District.Name}}{{end}} -
    +{{ end }} +{{ define "content" }} + {{ if (eq .District nil) }} + {{ template "header-rmo" . }} + {{ else }} + {{ template "header-district" .District }} + {{ end }} +
    + +
    +
    +
    Report {{ .Report.ID|publicReportID }}
    + {{ .Report.Status }}
    -
    -
    - Location: - {{.Report.Address}} -
    -
    -
    -
    - Images: - - {{ if gt .Report.ImageCount 0 }}{{.Report.ImageCount}}{{else}}None provided{{end}} -
    -
    - {{range .Report.Details}} +
    -
    - {{.Name}} +
    + Type: + {{ .Report.Type }}
    -
    - {{.Value}} +
    + Created: + {{ .Report.Created|timeSince }} +
    +
    + District: + {{ if (eq .District nil) }} + Unknown + {{ else }} + {{ .District.Name }} + {{ end }}
    - {{end}} -
    -
    - - -
    -
    -
    Location Map
    -
    -
    - -
    -
    - - -
    -
    -
    Request History
    -
    -
    -
    - {{range .Timeline}} -
    -
    {{.At|timeSince}}
    -
    {{.Title}}
    -

    {{.Detail}}

    +
    +
    + Location: + {{ .Report.Address }} +
    +
    +
    +
    + Images: + + {{ if gt .Report.ImageCount 0 }} + {{ .Report.ImageCount }} + {{ else }} + None provided + {{ end }} +
    +
    + {{ range .Report.Details }} +
    +
    + {{ .Name }} +
    +
    + {{ .Value }} +
    +
    + {{ end }} +
    +
    + + +
    +
    +
    + Location Map +
    +
    +
    + +
    +
    + + +
    +
    +
    + Request History +
    +
    +
    +
    + {{ range .Timeline }} +
    +
    {{ .At|timeSince }}
    +
    {{ .Title }}
    +

    {{ .Detail }}

    +
    + {{ end }}
    - {{end}}
    -
    -{{end}} +{{ end }} diff --git a/rmo/template/submit-complete.html b/rmo/template/submit-complete.html index 02a40182..d650db4a 100644 --- a/rmo/template/submit-complete.html +++ b/rmo/template/submit-complete.html @@ -1,149 +1,248 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Report Submission Complete{{end}} -{{define "extraheader"}} - - -{{end}} -{{define "content"}} -
    -
    -
    - -
    -
    -

    - - - - Report Successfully Submitted -

    -
    -
    -
    -
    - Your Report ID: - {{.ReportID|publicReportID}} -
    -
    - -
    - -
    -

    - - Follow-up -

    -

    Please provide your contact information in case the district has any follow-up questions.

    -
    - - -
    - -
    - - - - -
    -
    -
    - -
    - - - - - - -
    -
    - -
    - -
    - - - - - - - -
    -
    - -
    - - -
    -
    - - -
    -
    - - -
    - - -
    -
    - -
    - - -
    -

    - - +{{ define "title" }}Report Submission Complete{{ end }} +{{ define "extraheader" }} + + +{{ end }} +{{ define "content" }} +
    +
    +
    + +
    +
    +

    + + - Check Your Report Status -

    -

    You can check the status of your report at any time using your Report ID.

    - - Check Status - + Report Successfully Submitted +

    +
    +
    +
    + Your Report ID: + {{ .ReportID|publicReportID }} +
    +
    -
    -
    - {{ if not (eq .District nil) }} -

    Your report will be handled by

    -

    {{ .District.Name }}

    - - {{ end }} +
    + +
    +

    + + Follow-up +

    +

    + Please provide your contact information in case the district has + any follow-up questions. +

    +
    + + +
    + +
    + + + + +
    +
    +
    + +
    + + + + + + +
    +
    + +
    + +
    + + + + + + + +
    +
    + +
    + + +
    +
    + + +
    +
    + + +
    + + +
    +
    + +
    + + +
    +

    + + + + Check Your Report Status +

    +

    + You can check the status of your report at any time using your + Report ID. +

    + + Check Status + +
    + +
    +
    + {{ if not (eq .District nil) }} +

    Your report will be handled by

    +

    {{ .District.Name }}

    + + {{ end }} +
    -
    - - -
    -
    -{{end}} +{{ end }} diff --git a/rmo/template/terms.html b/rmo/template/terms.html index 4866cec6..b5ad63b2 100644 --- a/rmo/template/terms.html +++ b/rmo/template/terms.html @@ -1,26 +1,72 @@ -{{template "base.html" .}} -{{define "title"}}Privacy Policy{{end}} -{{define "extraheader"}} -{{end}} -{{define "content"}} -
    -

    Terms of Service

    -

    Look, we don't like having terms of service, and we're confident you don't find them interesting to read. But we have to have them as a business.

    -

    Service provider

    -

    Report Mosquitoes Online is provided by Gleipnir LLC. By using the website you agree to these terms. If you don't agree, don't tell a computer to access our site.

    -

    Gleipnir LLC is a company organized under the laws of the state of Arizona, USA, and operates under Arizona law.

    -

    Gleipnir LLC is located at 2726 S Quinn Ave, Gilbert, AZ

    -

    What you can expect from us

    -

    We provide services free to the public. We'll occasionally make changes to these services. We won't notify members of the public, like you, of those changes. We may notify our customers, but we may not, since we may changes very frequently. In general, we have additional agreements beyond this one with entities that are our customers.

    -

    The data you provide to us is used for public health. That generally means passing some or all of your data on to our customers that work in mosquito abatement. Any information you give to us we may give to them. You can request at any time that we stop sharing your information and we will honor that request.

    -

    We will only contact you if you give us express permission to do so

    -

    We won't sell your information to marketers, data aggregators, or anyone who makes money off your data. We only share data with entities engaged in public health work.

    -

    We are so vehemently opposed to selling your data that we agree to a contractual obligation of at least $1000 USD in damages per person if your data is every sold by the Company, or by any company in the future that aquires a stake in the Company.

    -

    What we expect from you

    -

    Don't provide false data. This include shenanigans like using our system to send messages to other people's email address or phone.

    -

    Don't try to scrape/exfiltrate/steal our data. If you've got a legitimate use for our data, contact us, if you've got a worthy project we may be willing to work with you.

    -

    Don't try to break into our systems, infect them with malware, use us as a tool in a phishing campaign, or generally hack about. We like hackers, but we prefer to work with them intentionally.

    -

    Don't misrepresent who you are

    -

    You agree we can use any data you provide to us as we see fit. This may include doing nothing with it, but generally includes improving public health by fighting mosquitoes and mosquito-born illnesses.

    -
    -{{end}} +{{ template "base.html" . }} +{{ define "title" }}Privacy Policy{{ end }} +{{ define "extraheader" }} +{{ end }} +{{ define "content" }} +
    +

    Terms of Service

    +

    + Look, we don't like having terms of service, and we're confident you don't + find them interesting to read. But we have to have them as a business. +

    +

    Service provider

    +

    + Report Mosquitoes Online is provided by Gleipnir LLC. By using the website + you agree to these terms. If you don't agree, don't tell a computer to + access our site. +

    +

    + Gleipnir LLC is a company organized under the laws of the state of + Arizona, USA, and operates under Arizona law. +

    +

    Gleipnir LLC is located at 2726 S Quinn Ave, Gilbert, AZ

    +

    What you can expect from us

    +

    + We provide services free to the public. We'll occasionally make changes to + these services. We won't notify members of the public, like you, of those + changes. We may notify our customers, but we may not, since we may changes + very frequently. In general, we have additional agreements beyond this one + with entities that are our customers. +

    +

    + The data you provide to us is used for public health. That generally means + passing some or all of your data on to our customers that work in mosquito + abatement. Any information you give to us we may give to them. You can + request at any time that we stop sharing your information and we will + honor that request. +

    +

    We will only contact you if you give us express permission to do so

    +

    + We won't sell your information to marketers, data aggregators, or anyone + who makes money off your data. We only share data with entities engaged in + public health work. +

    +

    + We are so vehemently opposed to selling your data that we agree to a + contractual obligation of at least $1000 USD in damages per person if your + data is every sold by the Company, or by any company in the future that + aquires a stake in the Company. +

    +

    What we expect from you

    +

    + Don't provide false data. This include shenanigans like using our system + to send messages to other people's email address or phone. +

    +

    + Don't try to scrape/exfiltrate/steal our data. If you've got a legitimate + use for our data, contact us, if you've got a worthy project we may be + willing to work with you. +

    +

    + Don't try to break into our systems, infect them with malware, use us as a + tool in a phishing campaign, or generally hack about. We like hackers, but + we prefer to work with them intentionally. +

    +

    Don't misrepresent who you are

    +

    + You agree we can use any data you provide to us as we see fit. This may + include doing nothing with it, but generally includes improving public + health by fighting mosquitoes and mosquito-born illnesses. +

    +
    +{{ end }} diff --git a/rmo/template/water.html b/rmo/template/water.html index 0c55db68..93b1f341 100644 --- a/rmo/template/water.html +++ b/rmo/template/water.html @@ -1,13 +1,13 @@ -{{template "base.html" .}} +{{ template "base.html" . }} -{{define "title"}}Report Standing Water{{end}} -{{define "extraheader"}} - - - - - - +{{ define "title" }}Report Standing Water{{ end }} +{{ define "extraheader" }} + + + + + + -{{end}} -{{define "content"}} -{{if (eq .District nil)}} - {{template "header-rmo" .}} -{{else}} - {{template "header-district" .District}} -{{end}} - -
    -
    - -
    -
    -

    Report Standing Water

    -

    Help us locate and treat potential mosquito production sources in your area

    -
    -
    - - -
    - -
    -
    - -

    Photos

    -
    -

    Photos help us identify the severity of the issue and may contain location data that can help us find the production source.

    -
    - +{{ end }} +{{ define "content" }} + {{ if (eq .District nil) }} + {{ template "header-rmo" . }} + {{ else }} + {{ template "header-district" .District }} + {{ end }} + +
    +
    + +
    +
    +

    Report Standing Water

    +

    + Help us locate and treat potential mosquito production sources in + your area +

    - -
    -
    - -

    Additional Information

    + + + +
    +
    + +

    Photos

    +
    +

    + Photos help us identify the severity of the issue and may contain + location data that can help us find the production source. +

    +
    + +
    -

    Please provide any other information that might help us address this mosquito production source.

    - -
    + + +
    +
    + +

    Additional Information

    +
    +

    + Please provide any other information that might help us address this + mosquito production source. +

    + +
    +
    + + +
    +
    +
    + + +
    +
    + +

    Location

    +
    +

    + Please provide the location of the potential mosquito production + source. We may be able to extract this information from your photos + if they contain location data. +

    - - +
    +

    + You can select the location by address or by moving the marker + on the map. +

    +
    -
    -
    - - -
    -
    - -

    Location

    -
    -

    Please provide the location of the potential mosquito production source. We may be able to extract this information from your photos if they contain location data.

    -
    -
    -

    You can select the location by address or by moving the marker on the map.

    -
    -
    - -
    - - - - - - - - - - -
    -
    - + + + + + + + + + + +
    +
    + - + api-key="{{ .MapboxToken }}" + > + +
    +
    +
    + +

    + You can also click on the map to mark the location precisely +

    + + +
    + + +
    + +
    +
    + +

    Source Details

    +
    + +
    +
    + + +
    + +
    + +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    +
    + + +
    +
    + +

    Access Information

    +
    +

    + Please provide any details about how to access the mosquito + source. This helps our technicians when they visit the site. +

    + +
    +
    + + +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    + + +
    +
    +
    +
    + + +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    +
    + +

    Property Owner Information (if known)

    +
    + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    - -

    You can also click on the map to mark the location precisely

    - - -
    - -
    - - -
    -
    - -

    Source Details

    + +
    +
    +
    +

    + Thank you for helping us keep our community safe from + mosquito-borne illnesses. +

    +

    + After submission, you will receive a confirmation with a report + ID for tracking purposes. +

    +
    +
    + +
    - +
    + +
    +
    + + +
    - - - -{{end}} +{{ end }}