From 0d63ebcae701fac17aaec964354f92258729141f Mon Sep 17 00:00:00 2001 From: Jesse Alama Date: Fri, 18 Jan 2019 14:03:29 +0100 Subject: [PATCH] Remove colon to ensure label consistency For the two labels to be consistent, either (a) the colon after "Password" should be removed, as done here, or (b) a colon should be added after the other label text ("Email address"). In this commit, I opt for option (a), though (b) would also be reasonable. --- src/site.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site.rkt b/src/site.rkt index 65b28e3..04df95b 100644 --- a/src/site.rkt +++ b/src/site.rkt @@ -335,7 +335,7 @@ (role "form")) ,(form-group 2 2 (label "email" "Email address") 0 5 (email-input "email")) - ,(form-group 2 2 (label "password" "Password:") + ,(form-group 2 2 (label "password" "Password") 0 5 (password-input "password")) ,(form-group 4 5 `(a ((href ,(embed-url (lambda (req) (register-form)))))