diff --git a/SRC/app/Http/Controllers/GameController.php b/SRC/app/Http/Controllers/GameController.php new file mode 100644 index 0000000..3df2928 --- /dev/null +++ b/SRC/app/Http/Controllers/GameController.php @@ -0,0 +1,25 @@ +middleware('guest'); + } + + /** + * Show the application dashboard to the user. + * + * @return Response + */ + public function index() + { + return view('home'); + } + +} diff --git a/SRC/app/Http/Controllers/LoginController.php b/SRC/app/Http/Controllers/LoginController.php new file mode 100644 index 0000000..8cd9170 --- /dev/null +++ b/SRC/app/Http/Controllers/LoginController.php @@ -0,0 +1,25 @@ +middleware('guest'); + } + + /** + * Show the application dashboard to the user. + * + * @return Response + */ + public function index() + { + return view('auth.login'); + } + +} diff --git a/SRC/app/Http/routes.php b/SRC/app/Http/routes.php index c8a3103..54a5d25 100644 --- a/SRC/app/Http/routes.php +++ b/SRC/app/Http/routes.php @@ -11,9 +11,11 @@ | */ -Route::get('/', 'WelcomeController@index'); +Route::get('/', 'GameController@index'); -Route::get('home', 'HomeController@index'); +Route::get('login', 'LoginController@index'); + +//Route::get('home', 'HomeController@index'); Route::controllers([ 'auth' => 'Auth\AuthController', diff --git a/SRC/config/app.php b/SRC/config/app.php index d97f488..fa89cd2 100644 --- a/SRC/config/app.php +++ b/SRC/config/app.php @@ -13,7 +13,7 @@ return [ | */ - 'debug' => env('APP_DEBUG'), + 'debug' => True, /* |-------------------------------------------------------------------------- diff --git a/SRC/public/.htaccess b/SRC/public/.htaccess old mode 100644 new mode 100755 diff --git a/SRC/public/css/app.css b/SRC/public/css/app.css old mode 100644 new mode 100755 diff --git a/SRC/public/favicon.ico b/SRC/public/favicon.ico old mode 100644 new mode 100755 diff --git a/SRC/public/index.php b/SRC/public/index.php old mode 100644 new mode 100755 diff --git a/SRC/public/pictures/1.jpg b/SRC/public/pictures/1.jpg new file mode 100755 index 0000000..6dadcc0 Binary files /dev/null and b/SRC/public/pictures/1.jpg differ diff --git a/SRC/public/pictures/2.jpg b/SRC/public/pictures/2.jpg new file mode 100755 index 0000000..4844590 Binary files /dev/null and b/SRC/public/pictures/2.jpg differ diff --git a/SRC/public/pictures/3.jpg b/SRC/public/pictures/3.jpg new file mode 100755 index 0000000..f938c7e Binary files /dev/null and b/SRC/public/pictures/3.jpg differ diff --git a/SRC/public/pictures/4.jpg b/SRC/public/pictures/4.jpg new file mode 100755 index 0000000..585d2c6 Binary files /dev/null and b/SRC/public/pictures/4.jpg differ diff --git a/SRC/public/pictures/5.jpg b/SRC/public/pictures/5.jpg new file mode 100755 index 0000000..322e355 Binary files /dev/null and b/SRC/public/pictures/5.jpg differ diff --git a/SRC/public/pictures/6.jpg b/SRC/public/pictures/6.jpg new file mode 100755 index 0000000..abb95f2 Binary files /dev/null and b/SRC/public/pictures/6.jpg differ diff --git a/SRC/public/robots.txt b/SRC/public/robots.txt old mode 100644 new mode 100755 diff --git a/SRC/resources/views/app.blade.php b/SRC/resources/views/app.blade.php index b0b406e..e8cd5b7 100644 --- a/SRC/resources/views/app.blade.php +++ b/SRC/resources/views/app.blade.php @@ -19,39 +19,6 @@ - @yield('content') diff --git a/SRC/resources/views/auth/login.blade.php b/SRC/resources/views/auth/login.blade.php index 344cdbd..1ea1177 100644 --- a/SRC/resources/views/auth/login.blade.php +++ b/SRC/resources/views/auth/login.blade.php @@ -1,7 +1,7 @@ @extends('app') @section('content') -
+
diff --git a/SRC/resources/views/home.blade.php b/SRC/resources/views/home.blade.php index 8f5e705..131534a 100644 --- a/SRC/resources/views/home.blade.php +++ b/SRC/resources/views/home.blade.php @@ -1,17 +1,56 @@ @extends('app') @section('content') -
-
-
-
-
Home
-
- You are logged in! -
-
-
-
+
+

Bienvenue!

+
+
+
+
+ +
+
+ +
+
+
+ + + +
Information du référent
+ +
@endsection diff --git a/SRC/storage/app/.gitignore b/SRC/storage/app/.gitignore old mode 100644 new mode 100755 diff --git a/SRC/storage/framework/cache/.gitignore b/SRC/storage/framework/cache/.gitignore old mode 100644 new mode 100755