diff --git a/.gitignore b/.gitignore index a5dadc3..3b69801 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,24 @@ yarn-error.log /public/assets/images/examples/ /var/ +!public/ +public/* +!public/favicon.ico +!public/index.php +!public/assets +public/assets/* +!public/assets/css +public/assets/css/* +!public/assets/css/dash +!public/assets/scripts +public/assets/scripts/* +!public/assets/scripts/dash.js +!public/assets/scripts/dash.js.map +!public/assets/images +public/assets/images/* +!public/assets/images/global/ +!public/assets/images/global/* + !content/ content/* !content/themes diff --git a/app/Http/Controllers/DashController.php b/app/Http/Controllers/DashController.php index 8b79d0f..5097087 100644 --- a/app/Http/Controllers/DashController.php +++ b/app/Http/Controllers/DashController.php @@ -22,7 +22,10 @@ class DashController extends Controller public function start() { - return view('back.start', []); + return view('back.start', [ + "status" => false, + "title" => "Fipamo Dash" + ]); } public function read($folder) diff --git a/public/assets/images/global/default-avi.png b/public/assets/images/global/default-avi.png new file mode 100644 index 0000000..99ee4bb Binary files /dev/null and b/public/assets/images/global/default-avi.png differ diff --git a/public/assets/images/global/default-bg.jpg b/public/assets/images/global/default-bg.jpg new file mode 100644 index 0000000..ff29737 Binary files /dev/null and b/public/assets/images/global/default-bg.jpg differ diff --git a/public/assets/images/global/fipamo-logo.svg b/public/assets/images/global/fipamo-logo.svg new file mode 100644 index 0000000..b8504ab --- /dev/null +++ b/public/assets/images/global/fipamo-logo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/images/global/rikc-logo.svg b/public/assets/images/global/rikc-logo.svg new file mode 100644 index 0000000..56bdf9d --- /dev/null +++ b/public/assets/images/global/rikc-logo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/images/global/sprite.svg b/public/assets/images/global/sprite.svg new file mode 100644 index 0000000..565e7ab --- /dev/null +++ b/public/assets/images/global/sprite.svg @@ -0,0 +1,823 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram-with-circle + + instagram + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/images/global/the-logo.svg b/public/assets/images/global/the-logo.svg new file mode 100644 index 0000000..f8d21b5 --- /dev/null +++ b/public/assets/images/global/the-logo.svg @@ -0,0 +1,33 @@ + + + + + diff --git a/public/assets/images/global/upload-audio.png b/public/assets/images/global/upload-audio.png new file mode 100644 index 0000000..137cd0c Binary files /dev/null and b/public/assets/images/global/upload-audio.png differ diff --git a/public/assets/images/global/upload-doc.png b/public/assets/images/global/upload-doc.png new file mode 100644 index 0000000..b6d8acb Binary files /dev/null and b/public/assets/images/global/upload-doc.png differ diff --git a/public/assets/images/global/upload-video.png b/public/assets/images/global/upload-video.png new file mode 100644 index 0000000..96b9a5d Binary files /dev/null and b/public/assets/images/global/upload-video.png differ diff --git a/resources/views/back/start.blade.php b/resources/views/back/start.blade.php index aee5764..b554012 100644 --- a/resources/views/back/start.blade.php +++ b/resources/views/back/start.blade.php @@ -3,7 +3,8 @@ @section('title', 'The Dash | Start') @section('main-content') -
- THIS IS THE DASH! -
+ @if($status) + @else + @include('forms.login') + @endif @endsection diff --git a/resources/views/forms/login.blade.php b/resources/views/forms/login.blade.php new file mode 100644 index 0000000..0389d90 --- /dev/null +++ b/resources/views/forms/login.blade.php @@ -0,0 +1,13 @@ +
+
+ +
+
+ + + + ? +
+
diff --git a/resources/views/frame.blade.php b/resources/views/frame.blade.php index d00e862..131d54b 100644 --- a/resources/views/frame.blade.php +++ b/resources/views/frame.blade.php @@ -15,7 +15,20 @@
- THIS IS THE TOP + @if($status) + +
+ @include('includes.notifications') +
+ @endif
@if($errors->any()) @@ -34,7 +47,7 @@ @show diff --git a/resources/views/includes/nav.blade.php b/resources/views/includes/nav.blade.php new file mode 100644 index 0000000..3984908 --- /dev/null +++ b/resources/views/includes/nav.blade.php @@ -0,0 +1,49 @@ + + + + +
+ @if($title == "Settings" ) + @include('includes.submenu-settings') + @elseif($title == "Start" ) + @include('includes.submenu-settings') + @endif + + + + + + + + + +
diff --git a/resources/views/includes/notifications.blade.php b/resources/views/includes/notifications.blade.php new file mode 100644 index 0000000..6c78023 --- /dev/null +++ b/resources/views/includes/notifications.blade.php @@ -0,0 +1,10 @@ +
+
+ + + +
+
+ Hey Hey +
+
diff --git a/resources/views/includes/submenu-settings.blade.php b/resources/views/includes/submenu-settings.blade.php new file mode 100644 index 0000000..2ecb79f --- /dev/null +++ b/resources/views/includes/submenu-settings.blade.php @@ -0,0 +1,11 @@ + diff --git a/resources/views/includes/submenu-start.blade.php b/resources/views/includes/submenu-start.blade.php new file mode 100644 index 0000000..aa73905 --- /dev/null +++ b/resources/views/includes/submenu-start.blade.php @@ -0,0 +1,12 @@ +