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

:moyai: add title

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