Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1449 Revision 1985
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: 1449 $
8
 * @version $Rev: 1985 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
class Login extends CI_Controller
11
class Login extends CI_Controller
12
{
12
{
Zeile 42... Zeile 42...
42
 
42
 
43
	private function login_form()
43
	private function login_form()
44
	{
44
	{
45
		$data["errors"] = validation_errors();
45
		$data["errors"] = validation_errors();
46
		$data["title"] = "Anmeldung";
-
 
47
		$data["formstart"] = form_open("/login/execute/", array("class" => "login-form", ));
-
 
48
		$data["formend"] = "</form>";
46
		$data["title"] = "Anmeldung";
49
		$this->smarty->view('login.tpl', $data);
47
		$this->smarty->view('login.tpl', $data);
Zeile 50... Zeile 48...
50
	}
48
	}
51
 
49