docspell/modules/webapp/src/main/elm/Messages/UserFormComp.elm

19 lines
276 B
Elm
Raw Normal View History

2021-03-28 16:23:43 +00:00
module Messages.UserFormComp exposing (..)
type alias Texts =
{ login : String
, state : String
, email : String
, password : String
}
gb : Texts
gb =
{ login = "Login"
, state = "State"
, email = "E-Mail"
, password = "Password"
}