From c95dc99a5498790f264469a85dbee14699fa5996 Mon Sep 17 00:00:00 2001 From: David Haynes Date: Tue, 25 Apr 2017 12:26:09 -0400 Subject: [PATCH] Add help text to signup form - first pass on verbage - :pray: thanks to crispy forms this is stupid easy Closes #68 --- go/go/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go/go/forms.py b/go/go/forms.py index 52ba369..91cc98e 100644 --- a/go/go/forms.py +++ b/go/go/forms.py @@ -316,6 +316,7 @@ class SignupForm(ModelForm): label='Full Name (Required)', max_length=100, widget=TextInput(), + help_text="We can fill in this field based on information provided by https://peoplefinder.gmu.edu.", ) # The RegisteredUser's chosen organization @@ -324,6 +325,7 @@ class SignupForm(ModelForm): label='Organization (Required)', max_length=100, widget=TextInput(), + help_text="Or whatever \"group\" you would associate with on campus.", ) # The RegisteredUser's reason for signing up to us Go @@ -332,6 +334,7 @@ class SignupForm(ModelForm): label='Description (Optional)', max_length=200, widget=Textarea(), + help_text="Describe what type of links you would intend to create with Go.", ) # A user becomes registered when they agree to the TOS @@ -342,6 +345,7 @@ class SignupForm(ModelForm): label=mark_safe( 'Do you accept the Terms of Service?' ), + help_text="Esssentially the GMU Responsible Use of Computing policies.", ) def __init__(self, request, *args, **kwargs): -- GitLab