summaryrefslogtreecommitdiff
path: root/src/pages/join.lisp
diff options
context:
space:
mode:
authorshoshin <shoshin@cicadas.surf>2023-03-13 21:52:18 -0500
committershoshin <shoshin@cicadas.surf>2023-03-13 21:52:18 -0500
commit12662d6a0fceb0c2adfdc4d0947800994bc85718 (patch)
treee57a899b0efedc077587757f8ecb14c2bcecf956 /src/pages/join.lisp
parent58afc03ae572eb56cb5a3b7b685689433edc13c7 (diff)
Add: minor tweaks, player list item view in adventure
Diffstat (limited to 'src/pages/join.lisp')
-rw-r--r--src/pages/join.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/join.lisp b/src/pages/join.lisp
index b48d102..f1ebeff 100644
--- a/src/pages/join.lisp
+++ b/src/pages/join.lisp
@@ -5,9 +5,9 @@
(defrender t ((page (eql :join)))
(with-page (:title "Register Player")
(:header
- (:h1 "Choose a Nickname Player"))
+ (:h1 "Choose a Player Nickname"))
(:form :method "POST" :action "/join"
- (:label :for "NICKNAME" "Choose a nickname. No spaces. Letters, Numbers, and -._")
+ (:label :for "NICKNAME" "Choose a nickname using only letters, numbers, and -._ (no spaces)") (:br)
(:input :name "NICKNAME" :placeholder "superbob")
(:button :type "submit" "Register"))))