Commit c81645ff authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[bootstrap v4] login screen styling

parent 834f301c
...@@ -232,10 +232,9 @@ submitButtonHref action href = ...@@ -232,10 +232,9 @@ submitButtonHref action href =
checkbox :: R.State Boolean -> R.Element checkbox :: R.State Boolean -> R.Element
checkbox ( val /\ set ) = checkbox ( val /\ set ) =
H.input { id: "checkbox-id" H.input { className : "form-check-input"
, type: "checkbox" , type: "checkbox"
, value: val , value: val
, className : "checkbox"
, on: { click: \_ -> set $ const $ not val} , on: { click: \_ -> set $ const $ not val}
} }
......
...@@ -73,11 +73,11 @@ modalCpt = R.hooksComponentWithModule thisModule "modal" cpt where ...@@ -73,11 +73,11 @@ modalCpt = R.hooksComponentWithModule thisModule "modal" cpt where
elems = elems =
[ H.div { id: "loginModal", className: modalClass (fst visible), key: 0 [ H.div { id: "loginModal", className: modalClass (fst visible), key: 0
, role: "dialog", "data": {show: true}, style: {display: "block"}} , role: "dialog", "data": {show: true}, style: {display: "block"}}
[ H.div { className: "modal-dialog", role: "document"} [ H.div { className: "modal-dialog modal-lg", role: "document"}
[ H.div { className: "modal-content" } [ H.div { className: "modal-content" }
[ H.div { className: "modal-header" } [ H.div { className: "modal-header" } [
[ closing logo
, logo , closing
] ]
, H.div { className: "modal-body" } children ] ] ] ] , H.div { className: "modal-body" } children ] ] ] ]
modalClass s = "modal myModal" <> if s then "" else " fade" modalClass s = "modal myModal" <> if s then "" else " fade"
...@@ -91,7 +91,7 @@ modalCpt = R.hooksComponentWithModule thisModule "modal" cpt where ...@@ -91,7 +91,7 @@ modalCpt = R.hooksComponentWithModule thisModule "modal" cpt where
closing = H.button { "type": "button", className: "close" closing = H.button { "type": "button", className: "close"
, "data": { dismiss: "modal" } } , "data": { dismiss: "modal" } }
[ H.a { on: {click} [ H.a { on: {click}
, className: "btn glyphicon glyphicon-remove-circle" , className: "btn fa fa-times"
-- TODO , font-size : "50px" -- TODO , font-size : "50px"
} [] } []
] ]
...@@ -187,36 +187,31 @@ formCpt = R.hooksComponentWithModule thisModule "form" cpt where ...@@ -187,36 +187,31 @@ formCpt = R.hooksComponentWithModule thisModule "form" cpt where
username <- R.useState' "" username <- R.useState' ""
password <- R.useState' "" password <- R.useState' ""
setBox@(checkBox /\ setCheckBox) <- R.useState' false setBox@(checkBox /\ setCheckBox) <- R.useState' false
pure $ R2.row pure $ R2.row [
[ cardGroup H.form { className: "col-md-12" } [
[ cardBlock H.h4 { className: "text-center" } {-className: "text-muted"-} [
[ center H.text $ "Login to garg://" <> show backend
[ H.h4 {}{-className: "text-muted"-}
[ H.text $ "Login to garg://" <> show backend]
, requestAccessLink {}
] ]
, H.div {} , requestAccessLink {}
[ csrfTokenInput {} , csrfTokenInput {}
, formGroup [ H.p {} [ H.text (fst error) ], usernameInput username ] , formGroup [ H.p {} [ H.text (fst error) ], usernameInput username ]
, formGroup [ passwordInput password, clearfix {} ] , formGroup [ passwordInput password, clearfix {} ]
, center , H.div { className: "form-group form-check text-center" } [
[ H.label {} checkbox setBox
[ H.div {className: "checkbox"} , H.label { className: "form-check-label" } [
[ checkbox setBox H.text "I hereby accept "
, H.text "I hereby accept "
, H.a { target: "_blank" , H.a { target: "_blank"
, href: "http://gitlab.iscpif.fr/humanities/tofu/tree/master" , href: "http://gitlab.iscpif.fr/humanities/tofu/tree/master"
} [ H.text "the terms of use" ] } [ H.text "the terms of use" ]
] ]
] ]
]
]
, if checkBox == true , if checkBox == true
&& fst username /= "" && fst username /= ""
&& fst password /= "" && fst password /= ""
then H.div {} [center [loginSubmit $ onClick props error username password]] then H.div { className: "text-center" } [
else H.div {} [] loginSubmit $ onClick props error username password
] ]
else H.div {} []
] ]
] ]
onClick {backend, sessions, visible} error username password e = onClick {backend, sessions, visible} error username password e =
...@@ -244,18 +239,21 @@ termsLink _ = ...@@ -244,18 +239,21 @@ termsLink _ =
requestAccessLink :: {} -> R.Element requestAccessLink :: {} -> R.Element
requestAccessLink _ = requestAccessLink _ =
H.a { target: "_blank", href: applyUrl } [ H.text " request access" ] H.div { className: "text-center" } [
H.a { href: applyUrl
, target: "_blank" } [ H.text " request access" ]
]
where applyUrl = "https://iscpif.fr/apply-for-a-services-account/" where applyUrl = "https://iscpif.fr/apply-for-a-services-account/"
usernameInput :: R.State String -> R.Element usernameInput :: R.State String -> R.Element
usernameInput username = usernameInput username =
H.input { className: "form-control" H.input { className: "form-control"
, defaultValue: (fst username)
, id: "id_username" , id: "id_username"
, maxLength: "254" , maxLength: "254"
, name: "username" , name: "username"
, placeholder: "username" , placeholder: "username"
, type: "text" , type: "text"
, defaultValue: (fst username)
--, on: {input: \e -> dispatch (SetUserName $ R.unsafeEventValue e)} --, on: {input: \e -> dispatch (SetUserName $ R.unsafeEventValue e)}
, on: {change: \e -> (snd username) $ const $ R.unsafeEventValue e} } , on: {change: \e -> (snd username) $ const $ R.unsafeEventValue e} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment