diff options
author | Grant Shangreaux <grant@unabridgedsoftware.com> | 2024-06-23 17:19:06 -0500 |
---|---|---|
committer | Grant Shangreaux <grant@unabridgedsoftware.com> | 2024-06-23 17:19:06 -0500 |
commit | b0115ef82880db63239c6532bb3b63d86b7658cb (patch) | |
tree | 16a429c4c95fec3c0e6d4c2a60543d870494f7d9 /site/login.lisp | |
parent | 68d30b9c81c4e099e0111fe0bbb33715dd572e8c (diff) |
[109] Clean: use VERB.NOUN form for session endpoints
Diffstat (limited to 'site/login.lisp')
-rw-r--r-- | site/login.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/login.lisp b/site/login.lisp index 7d07bb2..cb1f82f 100644 --- a/site/login.lisp +++ b/site/login.lisp @@ -8,7 +8,7 @@ (defun login-page () (page (:title "V A M P I R E ~ LOGIN") (:div (:h1 "I vant to suck your blood") - (:form :method "POST" :action (wknd:route-to 'session.create) + (:form :method "POST" :action (wknd:route-to 'create.session) (:input :placeholder "Name" :name "name") (:br) (:input :placeholder "Password" :type "password" :name "password") |