Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 759 Revision 762
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: 759 $
8
 * @version $Rev: 762 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
class Login extends CI_Controller
11
class Login extends CI_Controller
12
{
12
{
13
	public function index()
13
	public function index()
-
 
14
	{
-
 
15
		$data["formstart"] = form_open("/login/login/");
14
	{
16
		$data["formend"] = "</form>";
15
		$this->smarty->view('login.tpl');
17
		$this->smarty->view('login.tpl');
16
	}
18
	}
Zeile 17... Zeile 19...
17
}
19
}
18
 
20