diff --git a/src/mailmanweb/forms.py b/src/mailmanweb/forms.py index e44359d..d5aae00 100644 --- a/src/mailmanweb/forms.py +++ b/src/mailmanweb/forms.py @@ -137,15 +137,17 @@ class ListSubscribe(FieldsetForm): """Form fields to join an existing list. """ - email = forms.EmailField(label = _('Your email address'), + email = forms.EmailField(label = _('Your email address'), + widget = forms.HiddenInput(), error_messages = {'required': _('Please enter an email address.'), 'invalid': _('Please enter a valid email address.')}) - display_name = forms.CharField(label=_('Your name'), required=False) + display_name = forms.CharField(label=_('Your name (optional)'), required=False) class ListUnsubscribe(FieldsetForm): """Form fields to leave an existing list. """ email = forms.EmailField(label = _('Your email address'), + widget = forms.HiddenInput(), error_messages = { 'required': _('Please enter an email address.'), 'invalid': _('Please enter a valid email address.')}) diff --git a/src/mailmanweb/static/mailmanweb/default/css/style.css b/src/mailmanweb/static/mailmanweb/default/css/style.css index dd5032d..2ee0af0 100755 --- a/src/mailmanweb/static/mailmanweb/default/css/style.css +++ b/src/mailmanweb/static/mailmanweb/default/css/style.css @@ -4,6 +4,7 @@ h1 { clear: both; margin: 20px 0; + font-weight: normal; } h1 span { font-size: 75%; @@ -11,6 +12,7 @@ } h2 { margin: 10px 0; + font-weight: normal; } .mm_canvas { @@ -68,6 +70,10 @@ .mm_logout:hover { background-position: 0px -205px; } .mm_lists:hover { background-position: 0px -276px; } +.mm_main { + clear: both; +} + .mm_subHeader { padding-top: 10px; } diff --git a/src/mailmanweb/templates/mailmanweb/base.html b/src/mailmanweb/templates/mailmanweb/base.html index 956eb2d..00c55b7 100644 --- a/src/mailmanweb/templates/mailmanweb/base.html +++ b/src/mailmanweb/templates/mailmanweb/base.html @@ -1,5 +1,4 @@ - -{% load i18n %} +{% load i18n %}
@@ -22,26 +21,14 @@{{list.settings.description }} +
{{list.settings.description }} +