aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Login.elm
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-27 11:27:44 +0000
committerAkshay <[email protected]>2020-12-27 11:27:44 +0000
commitd5aabbac71fcd12f31c82159fe0d7a58d0ad925d (patch)
treed4a0516cecc85dab18d4e76230da05752d74ba9a /frontend/src/Login.elm
parentab3ddc1fae1364afeefc0d2c30d8e11a31839948 (diff)
add catalog filters, furbyLink component
Diffstat (limited to 'frontend/src/Login.elm')
-rw-r--r--frontend/src/Login.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/Login.elm b/frontend/src/Login.elm
index 87657bb..92a894f 100644
--- a/frontend/src/Login.elm
+++ b/frontend/src/Login.elm
@@ -134,5 +134,5 @@ view model =
134 , div [ fieldPadding ] [ viewInput "password" "Password" model.password PassEntered ] 134 , div [ fieldPadding ] [ viewInput "password" "Password" model.password PassEntered ]
135 , div [ css [ textAlign center ], fieldPadding ] [ furbyButton [ onClick LoginPressed ] [ text "Login" ] ] 135 , div [ css [ textAlign center ], fieldPadding ] [ furbyButton [ onClick LoginPressed ] [ text "Login" ] ]
136 , div [ css [ textAlign center ] ] [ text (viewStatus model.loginStatus) ] 136 , div [ css [ textAlign center ] ] [ text (viewStatus model.loginStatus) ]
137 , div [ fieldPadding ] [ text "Don't have an account? ", a [ href "/signup" ] [ text "Register now!" ] ] 137 , div [ fieldPadding ] [ text "Don't have an account? ", furbyLink [ href "/signup" ] [ text "Register now!" ] ]
138 ] 138 ]