diff --git a/src/postorius/forms.py b/src/postorius/forms.py index 2a1af6e..d3e5d5b 100644 --- a/src/postorius/forms.py +++ b/src/postorius/forms.py @@ -818,7 +818,8 @@ class AddressActivationForm(forms.Form): - email = forms.EmailField() + email = forms.EmailField(widget=forms.TextInput( + attrs={'placeholder': 'Enter alternate email'})) def clean_email(self): email = self.cleaned_data.get('email') diff --git a/src/postorius/templates/postorius/user/profile.html b/src/postorius/templates/postorius/user/profile.html index 45f9c7a..94f74e5 100644 --- a/src/postorius/templates/postorius/user/profile.html +++ b/src/postorius/templates/postorius/user/profile.html @@ -25,13 +25,45 @@
+ {% blocktrans %} + You can add other addresses to your profile, + to use different addresses for your subscriptions. + {% endblocktrans %} +
+ +- {% blocktrans %} - You can add other addresses to your profile, - to use different addresses for your subscriptions. - {% endblocktrans %} -
- {% endblock main %}