From d8a439fa425cb71cda9f9fe4f2864e4394138198 Mon Sep 17 00:00:00 2001 From: Aqeeb Imtiaz Harun Date: Mon, 21 May 2018 17:10:42 +0800 Subject: [PATCH] Front end integrated with the backend for loginpage and successfully redirects to homepage --- public/index.html | 30 +++++++++++++++++++++++++++--- routes/web.php | 3 +++ 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 27fbe5c..7368ba3 100644 --- a/public/index.html +++ b/public/index.html @@ -6,10 +6,9 @@ - + -
@@ -21,12 +20,13 @@
+ @csrf
- +
@@ -45,6 +45,7 @@
@@ -59,5 +60,28 @@
+ + + \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 829e44a..927d508 100644 --- a/routes/web.php +++ b/routes/web.php @@ -15,5 +15,8 @@ Route::get('/', function () { return view('welcome'); }); +//Route::post('login', 'AuthController@login'); + Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request'); Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset'); +