diff options
author | Simo Sorce <simo@redhat.com> | 2014-01-27 16:25:12 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2014-01-27 16:25:38 -0500 |
commit | 630b85e06018fb3d9f8c34685a406b3770d58b54 (patch) | |
tree | 0e68c2e6d7cc856fc577e6a2355a8be3d74ff540 /ipsilon | |
parent | cd30057eec4c772171c5558d9fac2c1f73bc12dd (diff) | |
download | ipsilon-630b85e06018fb3d9f8c34685a406b3770d58b54.tar.gz ipsilon-630b85e06018fb3d9f8c34685a406b3770d58b54.tar.xz ipsilon-630b85e06018fb3d9f8c34685a406b3770d58b54.zip |
Add help text to be shown on form based login page
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'ipsilon')
-rwxr-xr-x | ipsilon/login/authpam.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ipsilon/login/authpam.py b/ipsilon/login/authpam.py index ce60f39..d5ab428 100755 --- a/ipsilon/login/authpam.py +++ b/ipsilon/login/authpam.py @@ -41,6 +41,7 @@ class Pam(LoginPageBase): return self._template('login/pam.html', title='Login', action='%s/login/pam' % self.basepath, service_name=self.lm.service_name, + help_text=self.lm.help_text, username_text=self.lm.username_text, password_text=self.lm.password_text) @@ -85,6 +86,11 @@ for authentication. """ 'string', 'remote' ], + 'help text': [ + """ The text shown to guide the user at login time. """, + 'string', + 'Insert your Username and Password and then submit.' + ], 'username text': [ """ The text shown to ask for the username in the form. """, 'string', @@ -102,6 +108,10 @@ for authentication. """ return self.get_config_value('service name') @property + def help_text(self): + return self.get_config_value('help text') + + @property def username_text(self): return self.get_config_value('username text') |