summaryrefslogtreecommitdiffstats
path: root/ipsilon/login/authtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipsilon/login/authtest.py')
-rwxr-xr-xipsilon/login/authtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipsilon/login/authtest.py b/ipsilon/login/authtest.py
index 289a493..7b66066 100755
--- a/ipsilon/login/authtest.py
+++ b/ipsilon/login/authtest.py
@@ -28,7 +28,7 @@ class TestAuth(LoginPageBase):
def GET(self, *args, **kwargs):
context = self.create_tmpl_context()
# pylint: disable=star-args
- return self._template('login/pam.html', **context)
+ return self._template('login/form.html', **context)
def POST(self, *args, **kwargs):
username = kwargs.get("login_name")
@@ -53,7 +53,7 @@ class TestAuth(LoginPageBase):
error_username=not username
)
# pylint: disable=star-args
- return self._template('login/pam.html', **context)
+ return self._template('login/form.html', **context)
def root(self, *args, **kwargs):
op = getattr(self, cherrypy.request.method, self.GET)