Skip to content

Instantly share code, notes, and snippets.

@KirinDave
Created August 21, 2008 17:59
Show Gist options
  • Save KirinDave/6603 to your computer and use it in GitHub Desktop.
Save KirinDave/6603 to your computer and use it in GitHub Desktop.
(define-action (index)
`(html ,(html-header "Account")
(body
(h4 "Note that this action needs to reflect that a user is logged in.")
(a ([href "/account/login"]) "Login") (br)
(a ([href "/account/signup"]) "Signup"))))
(define-action (response formp1 formp2)
(dispatch/c
`(html ,(html-header "Account")
(body
(h4 (string-append "You got: " (string (+ formp1 formp2))))
(a ([href ,(make-url 'another-action)]) "Now multiply!")))))
(define-action (another-action) ; Note the lack of params
`(html ,(html-header "Account")
(body (h4 (string-append "You got: " (string (* formp1 formp2)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment