summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected700/pages/UserLogin.php
blob: 8071fb294db66849839eec7e1a8c2d1628b9bf1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class UserLogin extends BasePage
{
	public function loginButtonClicked($sender,$param)
	{
		$authManager=$this->Application->getModule('auth');
		$authManager->login($this->Username->Text,$this->Password->Text);
		$this->Response->redirect($this->Service->constructUrl('Home'));
	}
}

?>