From 372e1bf84dc315b287479f5b74cd02e2cecde9c2 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Fri, 18 Jan 2019 21:08:45 +0000 Subject: [PATCH] fix some links in the signup form --- ttadmin/users/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ttadmin/users/forms.py b/ttadmin/users/forms.py index 9b29d3e..5d1a20c 100644 --- a/ttadmin/users/forms.py +++ b/ttadmin/users/forms.py @@ -71,14 +71,14 @@ class TownieForm(Form): widget=Textarea, validators=(validate_pubkey,), label='SSH public key', - help_text='if this is not a thing you are familiar with, that\'s okay! you can make one here or read our guide to learn more.') + help_text='if this is not a thing you are familiar with, that\'s okay! you can make one here or read our guide to learn more.') pubkey_type = ChoiceField( choices=SSH_TYPE_CHOICES, label='SSH public key type', help_text="unless you know what you're doing you can leave this be.") aup = BooleanField( label='i super agree to our acceptable use policy', - help_text='please read our code of conduct and click this box if you agree.') + help_text='please read our code of conduct and click this box if you agree.') def clean(self): result = super().clean()