Skip to content

Instantly share code, notes, and snippets.

@facundoolano
Created December 4, 2017 14:52
Show Gist options
  • Save facundoolano/f621983b468cd73edc775e1d57ae7636 to your computer and use it in GitHub Desktop.
Save facundoolano/f621983b468cd73edc775e1d57ae7636 to your computer and use it in GitHub Desktop.
forms.clj
[forms/form-view {:submit-text "Register"
:on-submit [:register-submit]
:fields [{:key :email
:type "email"
:validate :valid-email?
:required true}
{:key :password
:type "password"
:required true}
{:key :password-repeat
:type "password"
:label "Repeat password"
:validate :matching-passwords?
:required true}]}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment