X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=blobdiff_plain;f=ipsilon%2Flogin%2Fauthtest.py;h=7b6606619f566e55b5566c0c2950c016b0d4f47c;hp=289a493277192a6013ef228948dec5f1c490d6d4;hb=32bb6d8b38b9147143074710ba2dcb7f45cd4157;hpb=27458696e66f79bf5523818cebdb2bd357513799 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)