matebeamter/src/View/Auth.hs
2019-09-08 17:27:38 +02:00

22 lines
321 B
Haskell

{-# LANGUAGE OverloadedStrings #-}
module View.Auth where
import qualified Text.Blaze.Html5 as H
import Data.Text.I18n
-- internal imports
import Types
import View.Scaffold
type AuthPage = H.Html
authPage
:: L10n
-> Locale
-> AuthPage
authPage l10n locale = scaffold l10n locale initPage $ do
H.p $ "Test"