/var/www/vhosts/nabawater/vendor/dektrium/yii2-user/widgets
Edit: /var/www/vhosts/nabawater/vendor/dektrium/yii2-user/widgets/Login.php (706B)
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace dektrium\user\widgets;
use dektrium\user\models\LoginForm;
use yii\base\Widget;
/**
* Login for widget.
*
* @author Dmitry Erofeev
*/
class Login extends Widget
{
/**
* @var bool
*/
public $validate = true;
/**
* @inheritdoc
*/
public function run()
{
return $this->render('login', [
'model' => \Yii::createObject(LoginForm::className()),
]);
}
}