Subversion-Projekte lars-tiefland.ci

Revision

Revision 785 | Revision 789 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 785 Revision 788
Zeile 3... Zeile 3...
3
/**
3
/**
4
 *
4
 *
5
 * @package WebanOS CI
5
 * @package WebanOS CI
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
7
 * @copyright 2016
7
 * @copyright 2016
8
 * @version $Rev: 785 $
8
 * @version $Rev: 788 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
class Login extends CI_Controller
11
class Login extends CI_Controller
12
{
12
{
Zeile 23... Zeile 23...
23
		}
23
		}
24
	}
24
	}
Zeile 25... Zeile 25...
25
	
25
	
26
	private function login_form()
26
	private function login_form()
-
 
27
	{
27
	{
28
		$data["errors"] = validation_errors();
28
		$data["title"] = "Anmeldung";
29
		$data["title"] = "Anmeldung";
29
		$data["formstart"] = form_open("/login/execute/", array("class" => "login-form", ));
30
		$data["formstart"] = form_open("/login/execute/", array("class" => "login-form", ));
30
		$data["formend"] = "</form>";
31
		$data["formend"] = "</form>";
31
		$this->smarty->view('login.tpl', $data);
32
		$this->smarty->view('login.tpl', $data);