| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function actionLogin() |
||
| 58 | { |
||
| 59 | if (Yii::$app->user->isGuest === false) { |
||
| 60 | return $this->goHome(); |
||
| 61 | } |
||
| 62 | |||
| 63 | AdminLteAsset::register($this->view); |
||
| 64 | $this->view->title = Yii::t('app', 'Sign in'); |
||
| 65 | $this->layout = '@app/views/layouts/plain'; |
||
| 66 | |||
| 67 | return $this->render('login', [ |
||
| 68 | 'model' => $this->make(LoginForm::class) |
||
| 69 | ]); |
||
| 70 | } |
||
| 71 | } |
||
| 72 |