Skip to content

Instantly share code, notes, and snippets.

@haphaeu
haphaeu / 3-form.elm
Last active July 21, 2019 17:47 — forked from notyy/3-form.elm
implement a submit button in elm form guide
import Browser
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (onInput, onClick)
-- MAIN
main =
Browser.sandbox { init = init, update = update, view = view }