Compare commits
5 Commits
5ab574ea00
...
66b602a603
Author | SHA1 | Date | |
---|---|---|---|
66b602a603 | |||
6f2add1f43 | |||
4961a955e1 | |||
|
7aa4e11e31 | ||
|
df0be6a1ee |
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
/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
|
|
@ -133,7 +133,7 @@ loginView m = div [ class "login-wrapper" ]
|
||||||
[ h2 [] [ text "Log In" ]
|
[ h2 [] [ text "Log In" ]
|
||||||
, input [ type_ "text", placeholder "Username", value m.loginUsername, onInput ChangeLoginUsername] []
|
, input [ type_ "text", placeholder "Username", value m.loginUsername, onInput ChangeLoginUsername] []
|
||||||
, input [ type_ "password", placeholder "Password", value m.loginPassword, onInput ChangeLoginPassword ] []
|
, 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" ]
|
, button [ onClick AttemptLogin ] [ text "Log In" ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user