diff --git a/lib/microwaveprop_web/components/layouts.ex b/lib/microwaveprop_web/components/layouts.ex index 4bbeae70..820f4bd9 100644 --- a/lib/microwaveprop_web/components/layouts.ex +++ b/lib/microwaveprop_web/components/layouts.ex @@ -79,6 +79,20 @@ defmodule MicrowavepropWeb.Layouts do + + <.flash_group flash={@flash} /> """ end diff --git a/lib/microwaveprop_web/live/about_live.ex b/lib/microwaveprop_web/live/about_live.ex index 71aa6a60..2609c791 100644 --- a/lib/microwaveprop_web/live/about_live.ex +++ b/lib/microwaveprop_web/live/about_live.ex @@ -156,11 +156,6 @@ defmodule MicrowavepropWeb.AboutLive do -
- Built by and for the - North Texas Microwave Society - . -
""" diff --git a/lib/microwaveprop_web/live/privacy_live.ex b/lib/microwaveprop_web/live/privacy_live.ex new file mode 100644 index 00000000..bfc87b89 --- /dev/null +++ b/lib/microwaveprop_web/live/privacy_live.ex @@ -0,0 +1,91 @@ +defmodule MicrowavepropWeb.PrivacyLive do + @moduledoc false + use MicrowavepropWeb, :live_view + + @impl true + def mount(_params, _session, socket) do + {:ok, assign(socket, :page_title, "Privacy")} + end + + @impl true + def render(assigns) do + ~H""" ++ NTMS Propagation Prediction is an amateur-radio research project run by + and for the North Texas Microwave Society. Any information we collect or + that you submit is used exclusively to study microwave propagation and + improve the prediction model on this site. +
+ ++ Everything feeds one goal: calibrating and improving propagation + predictions for the amateur microwave bands. Aggregate or anonymized + results may appear in publications, talks, or on this site, but + individual personal details (email, password, IP) will never be + published. +
++ If you'd like your account deleted or your submissions removed, + contact the + + North Texas Microwave Society + + and we'll take care of it. +
+