Skip to content
Snippets Groups Projects
Commit 8e6544e3 authored by Jannik Wurche's avatar Jannik Wurche
Browse files

:moyai: add title

parent d6d3968b
No related branches found
No related tags found
No related merge requests found
module Pages.HomeView exposing (..)
import Types exposing (Model, Msg(..))
import Html exposing (Html, div, p, text, form, input, button)
import Html exposing (Html, div, p, text, form, input, button, h1)
import Html.Attributes exposing (class, type_, placeholder, value)
import Html.Events exposing (onSubmit, onClick, onInput)
import String exposing (startsWith)
......@@ -16,9 +16,11 @@ homeView model =
else
p [] [ text "zum testen: mwPpDw0HlJ1l65WObssa, 4tH5RYt62lho5q5TsabW" ]
in
div [ class "home" ] [
div [ class "center" ]
[ form [ onSubmit SendQuizRequest ]
div [ class "home" ]
[ div [ class "background" ] []
, div [ class "center" ]
[ h1 [ class "title" ] [ text "Mathe Quizzes" ]
, form [ onSubmit SendQuizRequest ]
[ input
[ type_ "text"
, placeholder "Quiz ID"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment