From df0be6a1eeee651c1c5edd8db4172531de3a2480 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Sun, 17 Mar 2019 12:03:18 -0500 Subject: [PATCH] Add placeholder for homeserver URL I forgot this one --- src/Scylla/Views.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Scylla/Views.elm b/src/Scylla/Views.elm index 898fca5..e39a5fa 100644 --- a/src/Scylla/Views.elm +++ b/src/Scylla/Views.elm @@ -133,7 +133,7 @@ loginView m = div [ class "login-wrapper" ] [ h2 [] [ text "Log In" ] , input [ type_ "text", placeholder "Username", value m.loginUsername, onInput ChangeLoginUsername] [] , input [ type_ "password", placeholder "Password", value m.loginPassword, onInput ChangeLoginPassword ] [] - , input [ type_ "text", value m.apiUrl, onInput ChangeApiUrl ] [] + , input [ type_ "text", placeholder "Homeserver URL", value m.apiUrl, onInput ChangeApiUrl ] [] , button [ onClick AttemptLogin ] [ text "Log In" ] ]