Skip to content

Instantly share code, notes, and snippets.

@AphonicChaos
Created January 23, 2016 16:33
Show Gist options
  • Save AphonicChaos/a4a37559c32ca7ace8ee to your computer and use it in GitHub Desktop.
Save AphonicChaos/a4a37559c32ca7ace8ee to your computer and use it in GitHub Desktop.
data Form = Form
{ username :: String
, password :: String
, gravatar :: Image}
validate :: Form -> Maybe a
oneEach, fileType, minLength :: Validator
main = do
user <- validate Form <$> minLength 8 username
<*> oneEach [character, number, special] password
<*> fileType JPEG gravatar
case user of
(Just u) -> redirect welcomePage
Nothing -> redirect loginPage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment