diff options
-rw-r--r-- | templates/login/register.html | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/templates/login/register.html b/templates/login/register.html index b26b1bd..0670894 100644 --- a/templates/login/register.html +++ b/templates/login/register.html @@ -26,6 +26,16 @@ function myFunction() { } } </script> +<style> +input, textarea {font-family: monospace; font-weight: bold; text-align:right; font-size: 100%; padding: 0.5em; } +textarea {text-align:left } +input[type="checkbox"] { + transform: scale(1.7); + margin: 10px; + } +li {color:red} +</style> + <div class='middle'> <h2>User registration - for a personal login to Troggle</h2> <!--using template login/register.html --> @@ -43,28 +53,30 @@ You are not logged in as the user you are attempting to re-register. <a href="https://lists.wookware.org/cgi-bin/mailman/roster/expo">expo email list</a>. So type in the same email address that you use there. -<div style='width: 40%' align="right"> + +<div style='width: 700px; font-family: monospace; font-weight: bold; font-size: 150%; text-align: right; '> <form method="post" accept-charset="utf-8">{% csrf_token %} {{form.as_p}} <div class='align-right'> <input type="checkbox" checked name="visible" onclick="myFunction()">Make Passwords visible (on this form only) -<br /><br /><input type="submit" value="Register →"> +<br /><br /> + <button class="fancybutton" style="padding: 0.5em 25px; font-size: 100%;" type = "submit" value = "Go to" > + Register → + </button> </div> </form> </div> -<div style='width: 40%' align="left"> -<span style="color:red"> -{{ form.non_field_errors }} <!-- form validation errors appear here --> -</span> +<div style='width: 50em' align="left"> + <p>Unfortunately cavers tend to use weird and playful names when signing up for things, so we can't automatically connect the troggle names and ids with the email addresses on the email list. And we don't believe in signing people up for things without their direct permission anyway. Having said that, when you register here we <em>will</em> sign you up automatically to the expo email list as that is how expo manages everything and it is a condition of -coming on expo. +coming on expo. (You can unsubscribe from the email list after expo.) <p>But the automatic sign-up to the email list is not working yet, and may not be before April 2025. So if you don't want to miss out on anything important, make sure you sign up to the @@ -87,7 +99,9 @@ username is public however, and we do not have anonymous people attending expo. who is editing the current expo records, website content, historic survey data and when using the expo kanban software. It is not the same as the password to access your email and it is not the same as the password you use to interact with the expo email list. - +<span style="color:red"> +{{ form.non_field_errors }} <!-- form validation errors appear here, and also at the top of the form--> +</span> </div> {% endblock %} |