···11module UI.Settings exposing (view)
2233+import Authentication exposing (Method(..))
34import Chunky exposing (..)
45import Html.Styled as Html exposing (Html, text)
56import Material.Icons.Action as Icons
···4546 -----------------------------------------
4647 , UI.Kit.canister
4748 [ UI.Kit.h1 "Settings"
4848- , [ text "Changes are automatically saved."
4949+ , [ text "Changes are saved automatically."
5050+ , lineBreak
5151+ , text "PS. You're storing the data for this application "
5252+ , case model.authentication.methodInUse of
5353+ Just Ipfs ->
5454+ text "on IPFS."
5555+5656+ Just Local ->
5757+ text "in this browser."
5858+5959+ Nothing ->
6060+ text "on nothing, wtf?"
4961 ]
5050- |> Html.span []
6262+ |> raw
5163 |> UI.Kit.intro
5264 ]
5365 ]