Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 764 Revision 767
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: 764 $
8
 * @version $Rev: 767 $
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
	{
14
	{
15
		$data["formstart"] = form_open("/login/login/");
15
		$data["formstart"] = form_open("/login/execute/");
16
		$data["formend"] = "</form>";
16
		$data["formend"] = "</form>";
17
		$this->smarty->view('login.tpl', $data);
17
		$this->smarty->view('login.tpl', $data);
-
 
18
	}
-
 
19
	
-
 
20
	function execute()
-
 
21
	{
-
 
22
		
18
	}
23
	}
Zeile 19... Zeile 24...
19
}
24
}
20
 
25