From 35d4d9031f75b2febbac0714a4fe43edfaaa4542 Mon Sep 17 00:00:00 2001 From: Henning Leutz <leutz@pcsg.de> Date: Wed, 1 Feb 2017 08:49:26 +0100 Subject: [PATCH] fix: css bei QUI\Auth\Google2Fa\Controls\Login geladen --- src/QUI/Auth/Google2Fa/Controls/Login.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/QUI/Auth/Google2Fa/Controls/Login.php b/src/QUI/Auth/Google2Fa/Controls/Login.php index 6cd730c..4909831 100644 --- a/src/QUI/Auth/Google2Fa/Controls/Login.php +++ b/src/QUI/Auth/Google2Fa/Controls/Login.php @@ -1,7 +1,7 @@ <?php /** - * This file contains + * This file contains QUI\Auth\Google2Fa\Controls\Login */ namespace QUI\Auth\Google2Fa\Controls; @@ -15,6 +15,18 @@ */ class Login extends Control { + /** + * Login constructor. + * + * @param array $attributes + */ + public function __construct(array $attributes = array()) + { + parent::__construct($attributes); + + $this->addCSSFile(dirname(__FILE__) . '/Login.css'); + } + /** * @return string */ -- GitLab