mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-28 09:04:50 +09:00
Display SSH key example as a placeholder, not a default value (thanks zPlus!)
This commit is contained in:
parent
339c2253f9
commit
e0d7612908
1 changed files with 8 additions and 8 deletions
|
@ -18,9 +18,7 @@ module Vervis.Form.Key
|
|||
)
|
||||
where
|
||||
|
||||
import Yesod.Form.Fields
|
||||
import Yesod.Form.Functions
|
||||
import Yesod.Form.Types
|
||||
import Yesod.Form
|
||||
|
||||
import Vervis.Field.Key
|
||||
import Vervis.Foundation
|
||||
|
@ -29,14 +27,16 @@ import Vervis.Model.Ident
|
|||
|
||||
newKeyAForm :: PersonId -> AForm Handler SshKey
|
||||
newKeyAForm pid = mk
|
||||
<$> (text2ky <$> areq (nameField pid) "Name*" Nothing)
|
||||
<*> areq sshKeyField "Content*" (Just defKey)
|
||||
<$> (text2ky <$> areq (nameField pid) "Name*" Nothing)
|
||||
<*> areq sshKeyField keySettings Nothing
|
||||
where
|
||||
mk n (a, c) = SshKey n pid a c
|
||||
keySettings =
|
||||
FieldSettings
|
||||
"Content*" Nothing Nothing Nothing [("placeholder", defKey)]
|
||||
defKey =
|
||||
( "ssh-rsa"
|
||||
, "VGhpcyBpcyBub3QgYSBrZXksIHBsZWFzZSBwYXN0ZSBhIHJlYWwgb25lIDopCg=="
|
||||
)
|
||||
"ssh-rsa \
|
||||
\AAAPcyBpcyubQgYBrZkWzZSBwY..."
|
||||
|
||||
newKeyForm :: PersonId -> Form SshKey
|
||||
newKeyForm = renderDivs . newKeyAForm
|
||||
|
|
Loading…
Reference in a new issue