diff options
author | colin <colin@cicadas.surf> | 2024-06-19 10:40:22 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-06-19 10:40:22 -0700 |
commit | 6e131b7c9c57c8cdf67ed59feafc6c8b56919e8f (patch) | |
tree | a69ed09e352f14ffcc6b726d5af65f99d5a3a39f /site/login.lisp | |
parent | 9a040cb019de3124538688a0624cc91acda18ff4 (diff) |
Add: link to new account page from login page
Diffstat (limited to 'site/login.lisp')
-rw-r--r-- | site/login.lisp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/site/login.lisp b/site/login.lisp index ef4ba26..04bf643 100644 --- a/site/login.lisp +++ b/site/login.lisp @@ -59,7 +59,9 @@ (:br) (:input :placeholder "Password" :type "password" :name "password") (:br) - (:button :type "submit" "Click to Login"))))) + (:button :type "submit" "Click to Login")) + (:a :href (wknd:route-to 'new-account.html) + "Become Undead")))) (defun new-account-page () (page (:title "V A M P I R E ~ JOIN") |