Compare commits

..

No commits in common. "66b602a603432c3232245bc98bd4d2b0f1753902" and "5ab574ea00e30c95662277fb2b061517df36d364" have entirely different histories.

2 changed files with 1 additions and 18 deletions

17
.gitignore vendored
View File

@ -1,17 +0,0 @@
/static/js/elm.js
/static/css/style.css
# Created by https://www.gitignore.io/api/elm,sass
# Edit at https://www.gitignore.io/?templates=elm,sass
### Elm ###
# elm-package generated files
elm-stuff
# elm-repl generated files
repl-temp-*
### Sass ###
.sass-cache/
*.css.map
*.sass.map
*.scss.map

View File

@ -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", placeholder "Homeserver URL", value m.apiUrl, onInput ChangeApiUrl ] []
, input [ type_ "text", value m.apiUrl, onInput ChangeApiUrl ] []
, button [ onClick AttemptLogin ] [ text "Log In" ]
]