home page route
This commit is contained in:
parent
c596984f81
commit
1ae83d28e6
@ -21,4 +21,9 @@ Route::get('/', function()
|
|||||||
Route::get('jouer', function()
|
Route::get('jouer', function()
|
||||||
{
|
{
|
||||||
return 'Viens jouer avec moi !';
|
return 'Viens jouer avec moi !';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Route::get('home', function()
|
||||||
|
{
|
||||||
|
return View::make('home');
|
||||||
|
});
|
||||||
|
9
SRC/app/views/home.php
Normal file
9
SRC/app/views/home.php
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<<html>
|
||||||
|
<head>
|
||||||
|
<title>Accueil</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>Veuillez choisir votre référent! =)</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in New Issue
Block a user