Minor: DSGV disclaimer sort-of-removed
This commit is contained in:
parent
e3fc2ee5a8
commit
575eff90f0
@ -5,6 +5,7 @@
|
|||||||
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances, UndecidableInstances #-}
|
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances, UndecidableInstances #-}
|
||||||
{-# LANGUAGE TypeFamilies, FlexibleContexts, ConstraintKinds #-}
|
{-# LANGUAGE TypeFamilies, FlexibleContexts, ConstraintKinds #-}
|
||||||
{-# LANGUAGE QuasiQuotes #-}
|
{-# LANGUAGE QuasiQuotes #-}
|
||||||
|
{-# OPTIONS_GHC -fno-warn-orphans #-} -- Monad FormResult
|
||||||
|
|
||||||
module Utils
|
module Utils
|
||||||
( module Utils
|
( module Utils
|
||||||
@ -43,11 +44,14 @@ getMsgRenderer = do
|
|||||||
mr <- getMessageRender
|
mr <- getMessageRender
|
||||||
return $ MsgRenderer (mr . SomeMessage :: forall msg. RenderMessage site msg => msg -> Text)
|
return $ MsgRenderer (mr . SomeMessage :: forall msg. RenderMessage site msg => msg -> Text)
|
||||||
|
|
||||||
|
|
||||||
instance Monad FormResult where
|
instance Monad FormResult where
|
||||||
FormMissing >>= _ = FormMissing
|
FormMissing >>= _ = FormMissing
|
||||||
(FormFailure errs) >>= _ = FormFailure errs
|
(FormFailure errs) >>= _ = FormFailure errs
|
||||||
(FormSuccess a) >>= f = f a
|
(FormSuccess a) >>= f = f a
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---------------------
|
---------------------
|
||||||
-- Text and String --
|
-- Text and String --
|
||||||
---------------------
|
---------------------
|
||||||
|
|||||||
@ -1,15 +1,17 @@
|
|||||||
<div .notification .notification-danger>
|
<div .notification .notification-danger>
|
||||||
<div .notification__content>
|
<div .notification__content>
|
||||||
<h1>
|
<h1>
|
||||||
Hinweis zum Datenschutz
|
Hinweis
|
||||||
<p>
|
<p>
|
||||||
Dieses experimentelle Programm wurde noch nicht
|
Dieses Webapplikation befindet sich noch in der Entwicklung.
|
||||||
hinsichtlich des Datenschutzes überprüft.
|
|
||||||
<em>
|
<em>
|
||||||
Die Benutzung erfolgt derzeit freiwillig und auf eigene Gefahr!
|
Jegliche Benutzung erfolgt derzeit freiwillig und auf eigene Gefahr! #
|
||||||
|
<p>
|
||||||
|
Wir sind auf Tests unter realen Bedingungen
|
||||||
|
angewiesen und
|
||||||
|
bitten um Ihr Verständnis.
|
||||||
|
<p>
|
||||||
|
Bitte melden Sie etwaige Probleme an #
|
||||||
|
<a href="mailto:jost@tcs.ifi.lmu.de">
|
||||||
|
jost@tcs.ifi.lmu.de
|
||||||
|
|
||||||
Wir sind natürlich bemüht, alle Datenschutzrechtlichen Vorgaben
|
|
||||||
zu erfüllen, doch eine Überprüfung kann erst stattfinden,
|
|
||||||
sobald die Software weitestgehend fertiggestellt wurde und
|
|
||||||
sich nicht mehr verändert. Um dies zu Erreichen sind jedoch Test
|
|
||||||
unter realen Bedingungen erforderlich. Wir bitten um Ihr Verständnis.
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user