Created
August 21, 2008 17:59
-
-
Save KirinDave/6603 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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