diff --git a/comms/template/report-subscription-confirmation.html b/comms/template/report-subscription-confirmation.html index 8fe723b1..88ef306a 100644 --- a/comms/template/report-subscription-confirmation.html +++ b/comms/template/report-subscription-confirmation.html @@ -92,7 +92,7 @@ diff --git a/public-report/endpoint.go b/public-report/endpoint.go index ef923f1c..b866c45f 100644 --- a/public-report/endpoint.go +++ b/public-report/endpoint.go @@ -8,7 +8,7 @@ import ( "github.com/rs/zerolog/log" ) -type ContextRoot struct{} +type ContentRoot struct{} var ( PrivacyT = buildTemplate("privacy", "base") @@ -20,14 +20,14 @@ func getPrivacy(w http.ResponseWriter, r *http.Request) { htmlpage.RenderOrError( w, PrivacyT, - ContextRoot{}, + ContentRoot{}, ) } func getRoot(w http.ResponseWriter, r *http.Request) { htmlpage.RenderOrError( w, RootT, - ContextRoot{}, + ContentRoot{}, ) } @@ -39,7 +39,7 @@ func getTerms(w http.ResponseWriter, r *http.Request) { htmlpage.RenderOrError( w, TermsT, - ContextRoot{}, + ContentRoot{}, ) } diff --git a/public-report/template/component/footer.html b/public-report/template/component/footer.html index 910cb8d7..eddc65aa 100644 --- a/public-report/template/component/footer.html +++ b/public-report/template/component/footer.html @@ -3,7 +3,7 @@
-

© 2025 Gleipnir Technology

+

© 2025 Gleipnir LLC

Contact: support@mosquitoes.online

diff --git a/public-report/template/privacy.html b/public-report/template/privacy.html index 2b40f0e3..3dec5541 100644 --- a/public-report/template/privacy.html +++ b/public-report/template/privacy.html @@ -20,7 +20,7 @@

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 Gleipnir Technology LLC, 2726 S Quinn Ave, Gilbert, AZ.

    +

    Company (referred to as either "the Company", "We", "Us" or "Our" in this Privacy Policy) refers to Gleipnir LLC, 2726 S Quinn Ave, Gilbert, AZ.

  • 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.

    diff --git a/public-report/template/terms.html b/public-report/template/terms.html index a5e04dc9..4866cec6 100644 --- a/public-report/template/terms.html +++ b/public-report/template/terms.html @@ -7,9 +7,9 @@

    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 Technology 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 Technology LLC is a company organized under the laws of the state of Arizona, USA, and operates under Arizona law.

    -

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

    +

    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.

    diff --git a/sync/routes.go b/sync/routes.go index 6fa8ae8d..f980dcdb 100644 --- a/sync/routes.go +++ b/sync/routes.go @@ -49,6 +49,8 @@ func Router() chi.Router { r.Get("/oauth/refresh", getOAuthRefresh) + r.Get("/privacy", getPrivacy) + r.Get("/qr-code/report/{code}", getQRCodeReport) r.Get("/signin", getSignin) r.Post("/signin", postSignin)