diff --git a/.gitignore b/.gitignore index 8d4f2f1..fb39f4a 100644 --- a/.gitignore +++ b/.gitignore @@ -161,6 +161,7 @@ fabric.properties /bin/* !bin/console !bin/symfony_requirements +/vendor/ # Assets and user uploads /web/bundles/ @@ -187,3 +188,5 @@ fabric.properties /web/js/ # End of https://www.toptal.com/developers/gitignore/api/symfony,phpstorm,git + +.idea/ \ No newline at end of file diff --git a/assets/styles/app.css b/assets/styles/app.css index dd6181a..8b13789 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -1,3 +1 @@ -body { - background-color: skyblue; -} + diff --git a/public/asset/image/BackgroundLogin.png b/public/asset/image/BackgroundLogin.png new file mode 100644 index 0000000..c964f0b Binary files /dev/null and b/public/asset/image/BackgroundLogin.png differ diff --git a/public/asset/image/CircleBackground.png b/public/asset/image/CircleBackground.png new file mode 100644 index 0000000..562fc69 Binary files /dev/null and b/public/asset/image/CircleBackground.png differ diff --git a/public/asset/image/LogoHegre.png b/public/asset/image/LogoHegre.png new file mode 100644 index 0000000..517bffb Binary files /dev/null and b/public/asset/image/LogoHegre.png differ diff --git a/src/Controller/IndexController.php b/src/Controller/IndexController.php deleted file mode 100644 index b3d9bbc..0000000 --- a/src/Controller/IndexController.php +++ /dev/null @@ -1 +0,0 @@ -render('login/login.html.twig'); + } +} diff --git a/templates/base.html.twig b/templates/base.html.twig index 3cda30f..d743664 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -3,7 +3,7 @@ {% block title %}Welcome!{% endblock %} - + {% block stylesheets %} {% endblock %} diff --git a/templates/login/login.html.twig b/templates/login/login.html.twig new file mode 100644 index 0000000..3567b41 --- /dev/null +++ b/templates/login/login.html.twig @@ -0,0 +1,58 @@ +{% extends 'base.html.twig' %} + +{% block title %}Login{% endblock %} + +{% block body %} + +
+
+ +
+ +
+
+
+{% endblock %}