diff --git a/resources/views/login.blade.php b/resources/views/login.blade.php new file mode 100644 index 000000000..07d458442 --- /dev/null +++ b/resources/views/login.blade.php @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + {{ config('app.name', 'Laravel') }} + + + + + + + + + + + + +
+
+
Welcome to the W4RP Services Page
+
+ Please Login + +
+
+
+ + diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php deleted file mode 100644 index f635dd620..000000000 --- a/resources/views/welcome.blade.php +++ /dev/null @@ -1,17 +0,0 @@ -@extends('layouts.app') -@section('content') -
-
-
-
-
Welcome to the W4RP Services Page
-
-
- Login -
-
-
-
-
-
-@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 85bdff218..82b778539 100644 --- a/routes/web.php +++ b/routes/web.php @@ -16,7 +16,7 @@ Route::get('/', function () { return redirect('/dashboard'); } - return view('welcome'); + return view('login'); })->name('/'); /**