about summary refs log blame commit diff
path: root/client/src/Login.elm
blob: 968325d48cfed52eac4e284f4394c09debeadc4e (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                    


                                                                  



                                      
                      
         
module Login exposing (render)

import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import State

googleSignIn : Html State.Msg
googleSignIn =
    div [ class "g-signin2", attribute "onsuccess" "onSignIn" ] []

render : State.Model -> Html State.Msg
render model =
    div [ class "pt-10 pb-20 px-10" ]
        [ googleSignIn
        ]