;;;; login.lisp (in-package :vampire) (defun login-page (body) (with-clog-create body (div () (div () (section (:h3 :content "LOGIN")) (form () (form-element (:text :bind name-input)) (br ()) (form-element (:password :bind pw-input)) (br ()) (button (:bind btn :content "Click here to log in")))) (div () (:p () (:a (:link "/new-account" :content "Create an account"))))) (setf (place-holder name-input) "Name" (place-holder pw-input) "Password")))