blob: 27f1d811a89a8b083f4d9f17f1f026b2959476bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Login exposing (render)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import State
render : State.Model -> Html State.Msg
render model =
div [ class "pt-10 pb-20 px-10" ]
[ p [] [ text "Please authenticate" ]
]
|