diff --git a/app/Helpers/GetNameInitMonth.php b/app/Helpers/GetNameInitMonth.php new file mode 100644 index 0000000..684cfd9 --- /dev/null +++ b/app/Helpers/GetNameInitMonth.php @@ -0,0 +1,16 @@ +translatedFormat('F'); // Januari + return strtoupper(mb_substr($bulan, 0, 1)); // J + } +} diff --git a/app/Http/Controllers/TaskmanController.php b/app/Http/Controllers/TaskmanController.php index a2c9db1..8de88ca 100644 --- a/app/Http/Controllers/TaskmanController.php +++ b/app/Http/Controllers/TaskmanController.php @@ -2,14 +2,13 @@ namespace App\Http\Controllers; -use App\Helpers\CheckTodaysInRange; -use App\Helpers\GetNumberDate; use App\Models\MonitorWeekly as ModelWeekly; use Illuminate\Http\Request; use App\Models\Taskman as ModelTaskman; use App\Models\User as ModelUser; use App\Models\Task as ModelTask; use App\Models\PlanAgenda as ModelPlan; +use App\Models\LogTask as ModelLogofTask; use Carbon\Carbon; class TaskmanController extends Controller @@ -42,7 +41,7 @@ public function goals($plan) } ]) ->orderBy('deadline', 'desc') - ->paginate(6); + ->paginate(10); $infoPlanAgenda = ModelPlan::findOrFail($plan); @@ -272,11 +271,57 @@ public function deleteItemTask(Request $request) public function listTaskByDate(Request $request) { - $tasks = ModelTask::whereDate('due', $request->date) - ->orderBy('id') + $tasks = ModelTask::with('user') // ๐Ÿ‘ˆ eager load user + ->whereDate('due', $request->date) + ->orderBy('id', 'DESC') ->get(); return response()->json($tasks); } + + public function addWeekly(Request $request) + { + $planAgenda = $request->input('id_plan_agn'); + $current_page = $request->input('current_page'); + + $data = [ + 'weekly' => $request->input('weeklyinit'), + 'start_date' => $request->input('start_date'), + 'end_date' => $request->input('end_date') + ]; + + if ($request->input('bufferStatus')) { + $bufferDays = max(0, (int) $request->input('bufferDays', 0)); + + $startBuffer = Carbon::parse($request->input('end_date')) + ->addDay() + ->format('Y-m-d'); + + $endBuffer = Carbon::parse($startBuffer) + ->addDays($bufferDays) + ->format('Y-m-d'); + + $data['buffer_start'] = $startBuffer; + $data['buffer_end'] = $endBuffer; + } + + if (str_contains(strtolower($request->input('weeklyinit')), 'ext')) { + $data['extention'] = 1; + } else { + $data['extention'] = 0; + } + + ModelWeekly::create($data); + + return redirect()->route('taskman.goals', [$planAgenda, 'page' => $current_page])->with('success', 'Yay, Data weekly berhasil dibuat.'); + } + + public function itemDetailTask(Request $request, $id) + { + $dataTask = ModelTask::with('user')->findOrFail($id); + $logTask = ModelLogofTask::where('id_task', $id)->first(); + + return view('home.taskman.detail_item', compact('dataTask', 'logTask')); + } } diff --git a/app/Models/AttachmentLogs.php b/app/Models/AttachmentLogs.php new file mode 100644 index 0000000..15688a4 --- /dev/null +++ b/app/Models/AttachmentLogs.php @@ -0,0 +1,24 @@ +belongsTo(LogTask::class, 'id_log', 'id'); + // 'id_log' = foreign key di attachment logs + // 'id' = primary key di log task + } +} diff --git a/app/Models/LogTask.php b/app/Models/LogTask.php new file mode 100644 index 0000000..81c15c5 --- /dev/null +++ b/app/Models/LogTask.php @@ -0,0 +1,24 @@ +belongsTo(Task::class, 'id_task', 'id'); + // 'id_task' = foreign key di log task + // 'id' = primary key di task + } +} diff --git a/composer.json b/composer.json index 0b5a44c..c78f284 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,8 @@ "app/Helpers/DayLefted.php", "app/Helpers/GetNumberDate.php", "app/Helpers/TotalDays.php", - "app/Helpers/CheckTodaysInRange.php" + "app/Helpers/CheckTodaysInRange.php", + "app/Helpers/GetNameInitMonth.php" ] }, "autoload-dev": { diff --git a/database/migrations/2026_01_21_105637_add_reschedule_to_tasks_table.php b/database/migrations/2026_01_21_105637_add_reschedule_to_tasks_table.php new file mode 100644 index 0000000..c2b77ae --- /dev/null +++ b/database/migrations/2026_01_21_105637_add_reschedule_to_tasks_table.php @@ -0,0 +1,28 @@ +string('category_evidence')->nullable()->after('detail_task'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('tasks', function (Blueprint $table) { + $table->dropColumn('category_evidence'); + }); + } +}; diff --git a/database/migrations/2026_02_10_013727_add_date_of_actual_done_to_tasks_table.php b/database/migrations/2026_02_10_013727_add_date_of_actual_done_to_tasks_table.php new file mode 100644 index 0000000..63efae5 --- /dev/null +++ b/database/migrations/2026_02_10_013727_add_date_of_actual_done_to_tasks_table.php @@ -0,0 +1,28 @@ +date('date_of_actual_done')->nullable()->after('due'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('tasks', function (Blueprint $table) { + $table->dropColumn('date_of_actual_done'); + }); + } +}; diff --git a/database/migrations/2026_02_10_014621_modify_actual_date_type_on_tasks_table.php b/database/migrations/2026_02_10_014621_modify_actual_date_type_on_tasks_table.php new file mode 100644 index 0000000..0664fdf --- /dev/null +++ b/database/migrations/2026_02_10_014621_modify_actual_date_type_on_tasks_table.php @@ -0,0 +1,32 @@ +dateTime('date_of_actual_done') + ->nullable() + ->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('tasks', function (Blueprint $table) { + $table->date('date_of_actual_done') + ->nullable() + ->change(); + }); + } +}; diff --git a/database/migrations/2026_02_10_015010_create_log_taks_table.php b/database/migrations/2026_02_10_015010_create_log_taks_table.php new file mode 100644 index 0000000..e33be39 --- /dev/null +++ b/database/migrations/2026_02_10_015010_create_log_taks_table.php @@ -0,0 +1,31 @@ +id(); + $table->integer('id_task'); + $table->dateTime('date_updates'); + $table->string('detail_updates'); + $table->integer('person_of_updates'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('log_taks'); + } +}; diff --git a/database/migrations/2026_02_10_015525_create_attachment_logs_table.php b/database/migrations/2026_02_10_015525_create_attachment_logs_table.php new file mode 100644 index 0000000..b91348d --- /dev/null +++ b/database/migrations/2026_02_10_015525_create_attachment_logs_table.php @@ -0,0 +1,30 @@ +id(); + $table->integer('id_log'); + $table->string('attachments'); + $table->integer('category_of_attachment'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('attachment_logs'); + } +}; diff --git a/database/seeders/LogTask.php b/database/seeders/LogTask.php new file mode 100644 index 0000000..ae62183 --- /dev/null +++ b/database/seeders/LogTask.php @@ -0,0 +1,28 @@ + 167, + 'date_updates' => now(), + 'detail_updates' => 'Task di hold, karena mau mengerjakan task Analisa HR', + 'person_of_updates' => 5, + ], + + ]; + + DB::table('log_taks')->insert($log_of_tasks); + } +} diff --git a/public/css/custom-timeline.css b/public/css/custom-timeline.css index c048483..c639049 100644 --- a/public/css/custom-timeline.css +++ b/public/css/custom-timeline.css @@ -24,7 +24,7 @@ display: block; margin-bottom: 20px; position: relative; width: 100%; -padding-right: 90px; +padding-right: 20px; } .timeline .timeline-wrapper:before { diff --git a/public/css/new-line.css b/public/css/new-line.css index 7628e3f..4d7e2de 100644 --- a/public/css/new-line.css +++ b/public/css/new-line.css @@ -1,71 +1,167 @@ +.main-wrapper { + padding: 60px 0; +} + +/* =============================== + SCROLL CONTAINER +==================================*/ +.timeline-wrapper { + position: relative; +} + +.timeline-container { + max-height: 85vh; + overflow-y: auto; + + /* Hide scrollbar */ + -ms-overflow-style: none; + scrollbar-width: none; +} + +.timeline-container::-webkit-scrollbar { + display: none; +} + +/* =============================== + SHADOW EFFECT +==================================*/ +.shadow-top, +.shadow-bottom { + position: absolute; + left: 0; + right: 0; + height: 40px; + pointer-events: none; + opacity: 0; + transition: opacity 0.3s ease; + z-index: 5; +} + +.shadow-top { + top: 0; + background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent); +} + +.shadow-bottom { + bottom: 0; + background: linear-gradient(to top, rgba(0,0,0,0.15), transparent); +} + +.shadow-visible { + opacity: 1; +} + +/* =============================== + TIMELINE +==================================*/ .timeline { - border-left: 3px solid #727cf5; - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; - margin: 0 auto; - position: relative; - padding: 50px; - list-style: none; - text-align: left; - max-width: 68%; -} - -.timeline .event { - border-bottom: 1px dashed #e8ebf1; - padding-bottom: 25px; - margin-bottom: 25px; - position: relative; -} - -.timeline .event:last-of-type { - padding-bottom: 0; - margin-bottom: 0; - border: none; -} - -.timeline .event:before, -.timeline .event:after { - position: absolute; - display: block; - top: 0; -} - -.timeline .event:before { - left: -210px; - content: attr(data-date); - text-align: right; - font-weight: 100; - font-size: 0.9em; - min-width: 120px; -} - -.timeline .event:after { - box-shadow: 0 0 0 3px #727cf5; - left: -55.8px; - background: #fff; - border-radius: 50%; - height: 9px; - width: 9px; - content: ""; - top: 5px; -} - -@media (max-width: 767px) { - .timeline { - max-width: 98%; - padding: 25px; - } - - .timeline .event { - padding-top: 30px; - } - - .timeline .event:before { - left: 0px; - text-align: left; - } - - .timeline .event:after { - left: -31.8px; - } + position: relative; + padding: 20px 0; +} + +.timeline::before { + content: ""; + position: absolute; + top: 0; + left: 50%; + width: 3px; + height: 100%; + background: #4f46e5; + transform: translateX(-50%); +} + +.timeline-item { + position: relative; + margin-bottom: 80px; +} + +.timeline-card { + width: 45%; + background: #fff; + padding: 20px 25px; + border-radius: 10px; + transition: 0.3s ease; + margin-left: 10px; + margin-right: 10px; +} + +.timeline-card:hover { + transform: translateY(-5px); +} + +.timeline-item.left .timeline-card { + margin-right: auto; + text-align: right; +} + +.timeline-item.right .timeline-card { + margin-left: auto; +} + +.timeline-icon { + position: absolute; + top: 25px; + left: 50%; + width: 42px; + height: 42px; + background: #fff; + border: 3px solid #4f46e5; + border-radius: 50%; + transform: translateX(-50%); + display: flex; + align-items: center; + justify-content: center; + color: #4f46e5; + font-size: 18px; + z-index: 2; + box-shadow: 0 0 0 4px #f8f9fa; +} + +.timeline-date { + font-size: 14px; + color: #6c757d; + margin-bottom: 6px; +} + +/* =============================== + INFO STICKY +==================================*/ +.info-sticky { + position: sticky; + top: 100px; +} + +.info-card { + border-radius: 10px; +} + +/* =============================== + RESPONSIVE +==================================*/ +@media (max-width: 992px) { + + .timeline-container { + max-height: none; + overflow: visible; + } + + .shadow-top, + .shadow-bottom { + display: none; + } + + .timeline::before { + left: 20px; + } + + .timeline-icon { + left: 20px; + } + + .timeline-card { + width: 100%; + margin-left: 60px !important; + text-align: left !important; + } + } \ No newline at end of file diff --git a/public/sneat-v3.0/html/auth-forgot-password-basic.html b/public/sneat-v3.0/html/auth-forgot-password-basic.html new file mode 100644 index 0000000..ad6c9de --- /dev/null +++ b/public/sneat-v3.0/html/auth-forgot-password-basic.html @@ -0,0 +1,185 @@ + + + + + + + + Demo: Forgot Password Basic - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + +

Forgot Password? ๐Ÿ”’

+

Enter your email and we'll send you instructions to reset your password

+
+
+ + +
+ +
+ +
+
+ +
+
+
+ + + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/auth-login-basic.html b/public/sneat-v3.0/html/auth-login-basic.html new file mode 100644 index 0000000..0385f19 --- /dev/null +++ b/public/sneat-v3.0/html/auth-login-basic.html @@ -0,0 +1,213 @@ + + + + + + + + Demo: Login Basic - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + +

Welcome to Sneat! ๐Ÿ‘‹

+

Please sign-in to your account and start the adventure

+ +
+
+ + +
+
+ +
+ + +
+
+
+
+
+ + +
+ + Forgot Password? + +
+
+
+ +
+
+ +

+ New on our platform? + + Create an account + +

+
+
+ +
+
+
+ + + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/auth-register-basic.html b/public/sneat-v3.0/html/auth-register-basic.html new file mode 100644 index 0000000..859a02f --- /dev/null +++ b/public/sneat-v3.0/html/auth-register-basic.html @@ -0,0 +1,213 @@ + + + + + + + + Demo: Register Basic - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + +

Adventure starts here ๐Ÿš€

+

Make your app management easy and fun!

+ +
+
+ + +
+
+ + +
+
+ +
+ + +
+
+
+
+ + +
+
+ +
+ +

+ Already have an account? + + Sign in instead + +

+
+
+ +
+
+
+ + + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/cards-basic.html b/public/sneat-v3.0/html/cards-basic.html new file mode 100644 index 0000000..879a351 --- /dev/null +++ b/public/sneat-v3.0/html/cards-basic.html @@ -0,0 +1,1424 @@ + + + + + + + + Demo: Cards basic - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
+
+
+ Card image cap +
+
Card title
+

+ Some quick example text to build on the card title and make up the bulk of the card's content. +

+ Go somewhere +
+
+
+
+
+
+
Card title
+
Support card subtitle
+
+ Card image cap +
+

Bear claw sesame snaps gummies chocolate.

+ Card link + Another link +
+
+
+
+
+
+
Card title
+
Support card subtitle
+ Card image cap +

Bear claw sesame snaps gummies chocolate.

+ Card link + Another link +
+
+
+
+ + + +
Content types
+ +
+
+
Body
+
+
+

+ This is some text within a card body. Jelly lemon drops tiramisu chocolate cake cotton candy + soufflรฉ oat cake sweet roll. Sugar plum marzipan dragรฉe topping cheesecake chocolate bar. Danish + muffin icing donut. +

+
+
+
Titles, text, and links
+
+
+
Card title
+
Card subtitle
+

+ Some quick example text to build on the card title and make up the bulk of the card's content. +

+ Card link + Another link +
+
+
List groups
+
+
    +
  • Cras justo odio
  • +
  • Dapibus ac facilisis in
  • +
  • Vestibulum at eros
  • +
+
+
+
+
Images
+
+ Card image cap +
+

+ Some quick example text to build on the card title and make up the bulk of the card's content. +

+

+ Cookie topping caramels jujubes gingerbread. Lollipop apple pie cupcake candy canes cookie ice + cream. Wafer chocolate bar carrot cake jelly-o. +

+
+
+
+
+
Kitchen sink
+
+ Card image cap +
+
Card title
+

Some quick example text to build on the card title.

+
+
    +
  • Cras justo odio
  • +
  • Vestibulum at eros
  • +
+ +
+
+
+ +
Header and footer
+
+
+
+
Featured
+
+
Special title treatment
+

+ With supporting text below as a natural lead-in to additional content natural lead-in to + additional content. +

+ Go somewhere +
+
+
+
+
+
Quote
+
+
+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.Lorem + ipsum dolor sit amet, consectetur. +

+
+ Someone famous in + Source Title +
+
+
+
+
+
+
+
Featured
+
+
Special title treatment
+

With supporting text below as a natural.

+ Go somewhere +
+ +
+
+
+ + + +
Text alignment
+
+
+
+
+
Special title treatment
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+
+
+
Special title treatment
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+
+
+
Special title treatment
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+ + + +
Images caps & overlay
+
+
+
+ Card image cap +
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. This + content is a little bit longer. +

+

+ Last updated 3 mins ago +

+
+
+
+
+
+
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. This + content is a little bit longer. +

+

+ Last updated 3 mins ago +

+
+ Card image cap +
+
+
+
+ Card image +
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. This + content is a little bit longer. +

+

Last updated 3 mins ago

+
+
+
+
+ + + +
Horizontal
+
+
+
+
+
+ Card image +
+
+
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+

Last updated 3 mins ago

+
+
+
+
+
+
+
+
+
+
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+

Last updated 3 mins ago

+
+
+
+ Card image +
+
+
+
+
+ + + +
Style variation
+
Default(solid)
+
+
+
+
+
Primary card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Secondary card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Success card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Danger card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Warning card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Info card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+ + +
Outline
+
+
+
+
+
Primary card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Secondary card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Success card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Danger card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Warning card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+
+
+
Info card title
+

Some quick example text to build on the card title and make up.

+
+
+
+
+ + + +
Card layout
+ + +
Card Groups
+
+
+ Card image cap +
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. This + content is a little bit longer. +

+
+ +
+
+ Card image cap +
+
Card title
+

+ This card has supporting text below as a natural lead-in to additional content. +

+
+ +
+
+ Card image cap +
+
Card title
+

+ This is a wider card with supporting text below as a natural lead-in to additional content. This + card has even longer content than the first to show that equal height action. +

+
+ +
+
+ + +
Grid Card
+
+
+
+ Card image cap +
+
Card title
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+
+
+
+
+
+ Card image cap +
+
Card title
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+
+
+
+
+
+ Card image cap +
+
Card title
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. +

+
+
+
+
+
+ Card image cap +
+
Card title
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+
+
+
+
+
+ Card image cap +
+
Card title
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+
+
+
+
+
+ Card image cap +
+
Card title
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+
+
+
+
+ + +
Masonry
+
+
+
+ Card image cap +
+
Card title that wraps to a new line
+

+ This is a longer card with supporting text below as a natural lead-in to additional content. + This content is a little bit longer. +

+
+
+
+
+
+
+
+

A well-known quote, contained in a blockquote element.

+
+ +
+
+
+
+
+ Card image cap +
+
Card title
+

+ This card has supporting text below as a natural lead-in to additional content. +

+

Last updated 3 mins ago

+
+
+
+
+
+
+
+

A well-known quote, contained in a blockquote element.

+
+ +
+
+
+
+
+
+
Card title
+

This card has a regular title and short paragraph of text below it.

+

Last updated 3 mins ago

+
+
+
+
+
+ Card image cap +
+
+
+
+
+
+

A well-known quote, contained in a blockquote element.

+
+ +
+
+
+
+
+
+
Card title
+

+ This is another card with title and supporting text below. This card has some additional content + to make it slightly taller overall. +

+

Last updated 3 mins ago

+
+
+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/extended-ui-perfect-scrollbar.html b/public/sneat-v3.0/html/extended-ui-perfect-scrollbar.html new file mode 100644 index 0000000..c1718fd --- /dev/null +++ b/public/sneat-v3.0/html/extended-ui-perfect-scrollbar.html @@ -0,0 +1,906 @@ + + + + + + + + Demo: Perfect Scrollbar - Extended UI | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Vertical Scrollbar
+
+

+ Sweet roll I love I love. Tiramisu I love soufflรฉ cake tart sweet roll cotton candy cookie. + Macaroon biscuit dessert. Bonbon cake soufflรฉ jelly gummi bears lemon drops. Chocolate bar I + love macaroon danish candy pudding. Jelly carrot cake I love tart cake bear claw macaroon candy + candy canes. Muffin gingerbread sweet jujubes croissant sweet roll. Topping muffin carrot cake + sweet. Toffee chocolate muffin I love croissant. Donut carrot cake ice cream ice cream. Wafer I + love pie danish marshmallow cheesecake oat cake pie I love. Icing pie chocolate marzipan jelly + ice cream cake. +

+

+ Marzipan oat cake caramels chocolate. Lemon drops cheesecake jelly beans sweet icing pudding + croissant. Donut candy canes carrot cake soufflรฉ. Croissant candy wafer pie I love oat cake + lemon drops caramels jujubes. I love macaroon halvah liquorice cake. Danish sweet roll pudding + cookie sweet roll I love. Jelly cake I love bear claw jujubes dragรฉe gingerbread. I love cotton + candy carrot cake halvah biscuit I love macaroon cheesecake tootsie roll. Chocolate cotton candy + biscuit I love fruitcake cotton candy biscuit tart gingerbread. Powder oat cake I love. + Cheesecake candy canes macaroon I love wafer I love sweet roll ice cream. Toffee cookie macaroon + lemon drops tart candy canes. Gummies gummies pie tiramisu I love bear claw cheesecake. +

+

+ Marzipan oat cake caramels chocolate. Lemon drops cheesecake jelly beans sweet icing pudding + croissant. Donut candy canes carrot cake soufflรฉ. Croissant candy wafer pie I love oat cake + lemon drops caramels jujubes. I love macaroon halvah liquorice cake. Danish sweet roll pudding + cookie sweet roll I love. Jelly cake I love bear claw jujubes dragรฉe gingerbread. I love cotton + candy carrot cake halvah biscuit I love macaroon cheesecake tootsie roll. Chocolate cotton candy + biscuit I love fruitcake cotton candy biscuit tart gingerbread. Powder oat cake I love. + Cheesecake candy canes macaroon I love wafer I love sweet roll ice cream. Toffee cookie macaroon + lemon drops tart candy canes. Gummies gummies pie tiramisu I love bear claw cheesecake. +

+

+ Sweet roll I love I love. Tiramisu I love soufflรฉ cake tart sweet roll cotton candy cookie. + Macaroon biscuit dessert. Bonbon cake soufflรฉ jelly gummi bears lemon drops. Chocolate bar I + love macaroon danish candy pudding. Jelly carrot cake I love tart cake bear claw macaroon candy + candy canes. Muffin gingerbread sweet jujubes croissant sweet roll. Topping muffin carrot cake + sweet. Toffee chocolate muffin I love croissant. Donut carrot cake ice cream ice cream. Wafer I + love pie danish marshmallow cheesecake oat cake pie I love. Icing pie chocolate marzipan jelly + ice cream cake. +

+

+ Sweet roll I love I love. Tiramisu I love soufflรฉ cake tart sweet roll cotton candy cookie. + Macaroon biscuit dessert. Bonbon cake soufflรฉ jelly gummi bears lemon drops. Chocolate bar I + love macaroon danish candy pudding. Jelly carrot cake I love tart cake bear claw macaroon candy + candy canes. Muffin gingerbread sweet jujubes croissant sweet roll. Topping muffin carrot cake + sweet. Toffee chocolate muffin I love croissant. Donut carrot cake ice cream ice cream. Wafer I + love pie danish marshmallow cheesecake oat cake pie I love. Icing pie chocolate marzipan jelly + ice cream cake. +

+

+ Sweet roll I love I love. Tiramisu I love soufflรฉ cake tart sweet roll cotton candy cookie. + Macaroon biscuit dessert. Bonbon cake soufflรฉ jelly gummi bears lemon drops. Chocolate bar I + love macaroon danish candy pudding. Jelly carrot cake I love tart cake bear claw macaroon candy + candy canes. Muffin gingerbread sweet jujubes croissant sweet roll. Topping muffin carrot cake + sweet. Toffee chocolate muffin I love croissant. Donut carrot cake ice cream ice cream. Wafer I + love pie danish marshmallow cheesecake oat cake pie I love. Icing pie chocolate marzipan jelly + ice cream cake. +

+
+
+
+ + + +
+
+
Horizontal Scrollbar
+
+ scrollbar-image +
+
+
+ + + +
+
+
Vertical & Horizontal Scrollbars
+
+ scrollbar-image +
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/extended-ui-text-divider.html b/public/sneat-v3.0/html/extended-ui-text-divider.html new file mode 100644 index 0000000..fb53e5f --- /dev/null +++ b/public/sneat-v3.0/html/extended-ui-text-divider.html @@ -0,0 +1,934 @@ + + + + + + + + Demo: Text Divider - Extended UI | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Basic
+
+
+
Text
+
+
+
+
+ + + +
+
+
Alignment
+
+
+
Start
+
+
+
Start-Center
+
+
+
Center (Default)
+
+
+
End-Center
+
+
+
End
+
+
+
+
+ + + +
+
+
Colors
+
+
+
Primary
+
+
+
Success
+
+
+
Danger
+
+
+
Warning
+
+
+
Info
+
+
+
Dark
+
+
+
+
+ + + +
+
+
Icons
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ + + +
+
+
Styles
+
+
+
Solid (Default)
+
+
+
Dotted
+
+
+
Dashed
+
+
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/form-layouts-horizontal.html b/public/sneat-v3.0/html/form-layouts-horizontal.html new file mode 100644 index 0000000..ce5d333 --- /dev/null +++ b/public/sneat-v3.0/html/form-layouts-horizontal.html @@ -0,0 +1,991 @@ + + + + + + + + Demo: Horizontal Layouts - Forms | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
+ +
+
+
+
Basic Layout
+ Default label +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + @example.com +
+
You can use letters, numbers & periods
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
Basic with Icons
+ Merged input group +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + + @example.com +
+
You can use letters, numbers & periods
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+
+ +
+
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/form-layouts-vertical.html b/public/sneat-v3.0/html/form-layouts-vertical.html new file mode 100644 index 0000000..77f0099 --- /dev/null +++ b/public/sneat-v3.0/html/form-layouts-vertical.html @@ -0,0 +1,953 @@ + + + + + + + + Demo: Vertical Layouts - Forms | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
+
+
+
+
Basic Layout
+ Default label +
+
+
+
+ + +
+
+ + +
+
+ +
+ + @example.com +
+
You can use letters, numbers & periods
+
+
+ + +
+
+ + +
+ +
+
+
+
+
+
+
+
Basic with Icons
+ Merged input group +
+
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + + @example.com +
+
You can use letters, numbers & periods
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+ +
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/forms-basic-inputs.html b/public/sneat-v3.0/html/forms-basic-inputs.html new file mode 100644 index 0000000..4dfa0b8 --- /dev/null +++ b/public/sneat-v3.0/html/forms-basic-inputs.html @@ -0,0 +1,1379 @@ + + + + + + + + Demo: Basic Inputs - Forms | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+
+
Default
+
+
+ + +
+ We'll never share your details with anyone else. +
+
+
+
+
+
+
+
Float label
+
+
+ + +
+ We'll never share your details with anyone else. +
+
+
+
+
+ + +
+
+
Form Controls
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + + + + + + + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
Input Sizing & Shape
+
+ Input text + +
+ + +
+
+ + +
+
+ + +
+
+
+
+ Input select +
+ + +
+
+ + +
+
+ + +
+
+
+
+ Input Shape +
+ + +
+
+
+
+ + +
+
+
Checkboxes and Radios
+ +
+
+ Checkboxes +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ Radio +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ +
+
+ Inline Checkboxes +
+ + +
+
+ + +
+
+ + +
+
+
+ Inline Radio +
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
Switches
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
Reverse
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+ + +
+
Range
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ +
+ +
+
HTML5 Inputs
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + +
+
File input
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/forms-input-groups.html b/public/sneat-v3.0/html/forms-input-groups.html new file mode 100644 index 0000000..cef4944 --- /dev/null +++ b/public/sneat-v3.0/html/forms-input-groups.html @@ -0,0 +1,1349 @@ + + + + + + + + Demo: Input groups - Forms | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Basic
+
+
+ @ + +
+ +
+ +
+ + +
+
+ +
+ + @example.com +
+ +
+ https://example.com/users/ + +
+ +
+ $ + + .00 +
+ +
+ With textarea + +
+
+
+
+ + +
+
+
Merged
+
+
+ + +
+ +
+ +
+ + +
+
+ +
+ + @example.com +
+ +
+ https://example.com/users/ + +
+ +
+ $ + + .00 +
+ +
+ With textarea + +
+
+
+
+ + +
+
+
Sizing & Shape
+
+
+ @ + +
+ +
+ @ + +
+ +
+ @ + +
+
+
+
+ +
+
+
Checkbox and radio addons
+
+
+
+ +
+ +
+ +
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
Multiple inputs & addon
+ +
+ Multiple inputs +
+ First and last name + + +
+ + Multiple addons +
+ $ + 0.00 + +
+ +
+ + $ + 0.00 +
+
+
+
+ +
+
+
Speech To Text
+
+ Input Group + +
+ + + + +
+ + Textarea + +
+ + + + +
+
+
+
+
+ + +
+
+
+
Button with dropdowns & addons
+
+ Button addons +
+ + +
+ +
+ + +
+ +
+ + + +
+ +
+ + + +
+ + Button with dropdowns +
+ + + +
+ +
+ + + +
+ + +
+
+
+ +
+ +
+
+
+
Segmented buttons
+
+
+ + + + +
+ +
+ + + + +
+
+
+
+
+ + +
+
+
+
Custom select
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+
+
+
+ + +
+
+
+
Custom file input
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/icons-boxicons.html b/public/sneat-v3.0/html/icons-boxicons.html new file mode 100644 index 0000000..7e6b374 --- /dev/null +++ b/public/sneat-v3.0/html/icons-boxicons.html @@ -0,0 +1,978 @@ + + + + + + + + Demo: Boxicons - Icons | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+

+ You can check complete list of box icons from + https://boxicons.com +

+ + +
+
+
+ +

adobe

+
+
+
+
+ +

algolia

+
+
+
+
+ +

audible

+
+
+
+
+ +

figma

+
+
+
+
+ +

redbubble

+
+
+
+
+ +

etsy

+
+
+
+
+ +

gitlab

+
+
+
+
+ +

patreon

+
+
+
+
+ +

facebook-circle

+
+
+
+
+ +

imdb

+
+
+
+
+ +

jquery

+
+
+
+
+ +

pinterest-alt

+
+
+
+
+ +

500px

+
+
+
+
+ +

airbnb

+
+
+
+
+ +

amazon

+
+
+
+
+ +

android

+
+
+
+
+ +

angular

+
+
+
+
+ +

apple

+
+
+
+
+ +

baidu

+
+
+
+
+ +

behance

+
+
+
+
+ +

bing

+
+
+
+
+ +

bitcoin

+
+
+
+
+ +

blogger

+
+
+
+
+ +

bootstrap

+
+
+
+ + + +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/index.html b/public/sneat-v3.0/html/index.html new file mode 100644 index 0000000..3f639c7 --- /dev/null +++ b/public/sneat-v3.0/html/index.html @@ -0,0 +1,1381 @@ + + + + + + + + Demo: Dashboard - Analytics | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+
+
+
+
+
Congratulations John! ๐ŸŽ‰
+

+ You have done 72% more sales today.
Check your new badge in your profile. +

+ + View Badges +
+
+
+
+ View Badge User +
+
+
+
+
+
+
+
+
+
+
+
+ chart success +
+ +
+

Profit

+

$12,628

+ +72.80% +
+
+
+
+
+
+
+
+ wallet info +
+ +
+

Sales

+

$4,679

+ +28.42% +
+
+
+
+
+ +
+
+
+
+
+
+
Total Revenue
+
+ +
+
+
+
+
+
+
+ + + +
+
+ +
+
62% Company Growth
+ +
+
+
+ +
+
+ + + +
$32.5k
+
+
+
+
+ +
+
+ + + +
$41.2k
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ paypal +
+ +
+

Payments

+

$2,456

+ -14.82% +
+
+
+
+
+
+
+
+ Credit Card +
+ +
+

Transactions

+

$14,857

+ +28.14% +
+
+
+
+
+
+
+
+
+
Profile Report
+ YEAR 2022 +
+
+ 68.2% +

$84,686k

+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Order Statistics
+

42.82k Total Sales

+
+ +
+
+
+
+

8,258

+ Total Orders +
+
+
+
    +
  • +
    + +
    +
    +
    +
    Electronic
    + Mobile, Earbuds, TV +
    +
    +
    82.5k
    +
    +
    +
  • +
  • +
    + +
    +
    +
    +
    Fashion
    + T-shirt, Jeans, Shoes +
    +
    +
    23.8k
    +
    +
    +
  • +
  • +
    + +
    +
    +
    +
    Decor
    + Fine Art, Dining +
    +
    +
    849k
    +
    +
    +
  • +
  • +
    + +
    +
    +
    +
    Sports
    + Football, Cricket Kit +
    +
    +
    99
    +
    +
    +
  • +
+
+
+
+ + + +
+
+ +
+
+ +
+
+
+
+ + + +
+
+
+
Transactions
+ +
+
+
    +
  • +
    + User +
    +
    +
    + Paypal +
    Send money
    +
    +
    +
    +82.6
    + USD +
    +
    +
  • +
  • +
    + User +
    +
    +
    + Wallet +
    Mac'D
    +
    +
    +
    +270.69
    + USD +
    +
    +
  • +
  • +
    + User +
    +
    +
    + Transfer +
    Refund
    +
    +
    +
    +637.91
    + USD +
    +
    +
  • +
  • +
    + User +
    +
    +
    + Credit Card +
    Ordered Food
    +
    +
    +
    -838.71
    + USD +
    +
    +
  • +
  • +
    + User +
    +
    +
    + Wallet +
    Starbucks
    +
    +
    +
    +203.33
    + USD +
    +
    +
  • +
  • +
    + User +
    +
    +
    + Mastercard +
    Ordered Food
    +
    +
    +
    -92.45
    + USD +
    +
    +
  • +
+
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/layouts-blank.html b/public/sneat-v3.0/html/layouts-blank.html new file mode 100644 index 0000000..f789073 --- /dev/null +++ b/public/sneat-v3.0/html/layouts-blank.html @@ -0,0 +1,89 @@ + + + + + + + + Demo: Blank layout - Layouts | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Blank Page

+ + + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/layouts-container.html b/public/sneat-v3.0/html/layouts-container.html new file mode 100644 index 0000000..b843587 --- /dev/null +++ b/public/sneat-v3.0/html/layouts-container.html @@ -0,0 +1,827 @@ + + + + + + + + Demo: Container - Layouts | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
+
+ Layout container +
+
+

Layout container

+

Container layout sets a max-width at each responsive breakpoint.

+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/layouts-fluid.html b/public/sneat-v3.0/html/layouts-fluid.html new file mode 100644 index 0000000..b24efed --- /dev/null +++ b/public/sneat-v3.0/html/layouts-fluid.html @@ -0,0 +1,824 @@ + + + + + + + + Demo: Fluid - Layouts | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
+
+ Layout fluid +
+
+

Layout fluid

+

Fluid layout sets a 100% width at each responsive breakpoint.

+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/layouts-without-menu.html b/public/sneat-v3.0/html/layouts-without-menu.html new file mode 100644 index 0000000..73e66d5 --- /dev/null +++ b/public/sneat-v3.0/html/layouts-without-menu.html @@ -0,0 +1,268 @@ + + + + + + + + Demo: Without menu - Layouts | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + + + + + +
+ +
+ +
+
+ Layout without menu +
+
+

Layout without Menu (Navigation)

+ +
+
+ +
+ + + + + + +
+
+ +
+ +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/layouts-without-navbar.html b/public/sneat-v3.0/html/layouts-without-navbar.html new file mode 100644 index 0000000..bb4b8ef --- /dev/null +++ b/public/sneat-v3.0/html/layouts-without-navbar.html @@ -0,0 +1,723 @@ + + + + + + + + Demo: Without navbar - Layouts | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ +
+ +
+ +
+
+ Layout without navbar +
+
+

Layout without Navbar

+

Layout does not contain Navbar component.

+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/pages-account-settings-account.html b/public/sneat-v3.0/html/pages-account-settings-account.html new file mode 100644 index 0000000..42b627e --- /dev/null +++ b/public/sneat-v3.0/html/pages-account-settings-account.html @@ -0,0 +1,1039 @@ + + + + + + + + Demo: Account settings - Account | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+ +
+ +
+
+ user-avatar +
+ + + +
Allowed JPG, GIF or PNG. Max size of 800K
+
+
+
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ US (+1) + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ + +
+
+
+ +
+
+
Delete Account
+
+
+
+
Are you sure you want to delete your account?
+

Once you delete your account, there is no going back. Please be certain.

+
+
+
+
+ + +
+ +
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/pages-account-settings-connections.html b/public/sneat-v3.0/html/pages-account-settings-connections.html new file mode 100644 index 0000000..b6243d4 --- /dev/null +++ b/public/sneat-v3.0/html/pages-account-settings-connections.html @@ -0,0 +1,1047 @@ + + + + + + + + Demo: Account settings - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+ +
+
+
+
+
Connected Accounts
+

Display content from your connected accounts on your site

+
+
+
+
+ google +
+
+
+
Google
+ Calendar and contacts +
+
+
+ +
+
+
+
+
+
+ slack +
+
+
+
Slack
+ Communication +
+
+
+ +
+
+
+
+
+
+ github +
+
+
+
Github
+ Manage your Git repositories +
+
+
+ +
+
+
+
+
+
+ mailchimp +
+
+
+
Mailchimp
+ Email marketing service +
+
+
+ +
+
+
+
+
+
+ asana +
+
+
+
Asana
+ Communication +
+
+
+ +
+
+
+
+ +
+
+
+
+
Social Accounts
+

Display content from social accounts on your site

+
+
+ +
+
+ facebook +
+
+
+
Facebook
+ Not Connected +
+
+ +
+
+
+
+
+ twitter +
+
+
+
Twitter
+ @ThemeSelection +
+
+ +
+
+
+
+
+ instagram +
+
+
+
instagram
+ @ThemeSelection +
+
+ +
+
+
+
+
+ dribbble +
+
+
+
Dribbble
+ Not Connected +
+
+ +
+
+
+
+
+ behance +
+
+
+
Behance
+ Not Connected +
+
+ +
+
+
+ +
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/pages-account-settings-notifications.html b/public/sneat-v3.0/html/pages-account-settings-notifications.html new file mode 100644 index 0000000..f8cfc8c --- /dev/null +++ b/public/sneat-v3.0/html/pages-account-settings-notifications.html @@ -0,0 +1,953 @@ + + + + + + + + Demo: Account settings - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+ +
+ +
+
Recent Devices
+ We need permission from your browser to show notifications. + Request Permission +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeEmailBrowserApp
New for you +
+ +
+
+
+ +
+
+
+ +
+
Account activity +
+ +
+
+
+ +
+
+
+ +
+
A new browser used to sign in +
+ +
+
+
+ +
+
+
+ +
+
A new device is linked +
+ +
+
+
+ +
+
+
+ +
+
+
+
+
When should we send you notifications?
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/pages-misc-error.html b/public/sneat-v3.0/html/pages-misc-error.html new file mode 100644 index 0000000..500779c --- /dev/null +++ b/public/sneat-v3.0/html/pages-misc-error.html @@ -0,0 +1,107 @@ + + + + + + + + Demo: Error - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

404

+

Page Not Found๏ธ โš ๏ธ

+

we couldn't find the page you are looking for

+ Back to home +
+ page-misc-error-light +
+
+
+ + + + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/pages-misc-under-maintenance.html b/public/sneat-v3.0/html/pages-misc-under-maintenance.html new file mode 100644 index 0000000..4f0dfd6 --- /dev/null +++ b/public/sneat-v3.0/html/pages-misc-under-maintenance.html @@ -0,0 +1,106 @@ + + + + + + + + Demo: Under Maintenance - Pages | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Under Maintenance! ๐Ÿšง

+

Sorry for the inconvenience but we're performing some maintenance at the moment

+ Back to home +
+ girl-doing-yoga-light +
+
+
+ + + + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/tables-basic.html b/public/sneat-v3.0/html/tables-basic.html new file mode 100644 index 0000000..f73af36 --- /dev/null +++ b/public/sneat-v3.0/html/tables-basic.html @@ -0,0 +1,4358 @@ + + + + + + + + Demo: Tables - Basic Tables | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
+
Table Basic
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Table Dark
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Dark Table head
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Light Table head
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Table Header & Footer
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
ProjectClientUsersStatusActions
+
+
+ + +
+ + +
+
Table Caption
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ List of Projects +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Striped rows
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Bordered Table
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ + Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+
+ + +
+ + +
+
Borderless Table
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + +
+
Hoverable rows
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + + +
+
Small Table
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ + +
+ + + +
+
Contextual Classes
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Sketch Project + Ronnie Shane +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
Sketch ProjectSarah Banks +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
React CustomTed Richer +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Latest Bootstrap + Perry Parker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+ Angular UI + Ana Bell +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ Bootstrap UI + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+
+
+ + +
+ + +
Table without Card
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
React ProjectBarry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+ + +
+ + +
+
Responsive Table
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#Table headingTable headingTable headingTable headingTable headingTable headingTable headingTable headingTable heading
1Table cellTable cellTable cellTable cellTable cellTable cellTable cellTable cellTable cell
2Table cellTable cellTable cellTable cellTable cellTable cellTable cellTable cellTable cell
3Table cellTable cellTable cellTable cellTable cellTable cellTable cellTable cellTable cell
+
+
+ + +
+ + +
+
Nested table
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ + Angular Project + Albert Cook +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Active + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
ProjectClientUsersStatusActions
+ + React Project + Barry Hunter +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Completed + +
+ + VueJs Project + Trevor Baker +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Scheduled + +
+
+ + Bootstrap Project + Jerry Milton +
    +
  • + Avatar +
  • +
  • + Avatar +
  • +
  • + Avatar +
  • +
+
Pending + +
+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-accordion.html b/public/sneat-v3.0/html/ui-accordion.html new file mode 100644 index 0000000..3ce96ed --- /dev/null +++ b/public/sneat-v3.0/html/ui-accordion.html @@ -0,0 +1,964 @@ + + + + + + + + Demo: Accordion - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
Accordion
+
+
+ Basic Accordion +
+
+

+ +

+ +
+
+ Lemon drops chocolate cake gummies carrot cake chupa chups muffin topping. Sesame snaps icing + marzipan gummi bears macaroon dragรฉe danish caramels powder. Bear claw dragรฉe pastry topping + soufflรฉ. Wafer gummi bears marshmallow pastry pie. +
+
+
+
+

+ +

+
+
+ Dessert ice cream donut oat cake jelly-o pie sugar plum cheesecake. Bear claw dragรฉe oat cake + dragรฉe ice cream halvah tootsie roll. Danish cake oat cake pie macaroon tart donut gummies. + Jelly beans candy canes carrot cake. Fruitcake chocolate chupa chups. +
+
+
+
+

+ +

+
+
+ Oat cake toffee chocolate bar jujubes. Marshmallow brownie lemon drops cheesecake. Bonbon + gingerbread marshmallow sweet jelly beans muffin. Sweet roll bear claw candy canes oat cake + dragรฉe caramels. Ice cream wafer danish cookie caramels muffin. +
+
+
+
+
+
+ Accordion Without Arrow +
+
+

+ +

+ +
+
+ Lemon drops chocolate cake gummies carrot cake chupa chups muffin topping. Sesame snaps icing + marzipan gummi bears macaroon dragรฉe danish caramels powder. Bear claw dragรฉe pastry topping + soufflรฉ. Wafer gummi bears marshmallow pastry pie. +
+
+
+ +
+

+ +

+
+
+ Dessert ice cream donut oat cake jelly-o pie sugar plum cheesecake. Bear claw dragรฉe oat cake + dragรฉe ice cream halvah tootsie roll. Danish cake oat cake pie macaroon tart donut gummies. + Jelly beans candy canes carrot cake. Fruitcake chocolate chupa chups. +
+
+
+ +
+

+ +

+
+
+ Oat cake toffee chocolate bar jujubes. Marshmallow brownie lemon drops cheesecake. Bonbon + gingerbread marshmallow sweet jelly beans muffin. Sweet roll bear claw candy canes oat cake + dragรฉe caramels. Ice cream wafer danish cookie caramels muffin. +
+
+
+
+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-alerts.html b/public/sneat-v3.0/html/ui-alerts.html new file mode 100644 index 0000000..7a1a24a --- /dev/null +++ b/public/sneat-v3.0/html/ui-alerts.html @@ -0,0 +1,880 @@ + + + + + + + + Demo: Alerts - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Basic Alerts
+
+ + + + + + + + + + + + + +
+
+
+ + +
+
+
Dismissible Alerts
+
+ + + + + + + + + + + + + +
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-badges.html b/public/sneat-v3.0/html/ui-badges.html new file mode 100644 index 0000000..905b31f --- /dev/null +++ b/public/sneat-v3.0/html/ui-badges.html @@ -0,0 +1,973 @@ + + + + + + + + Demo: Badges - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Basic Badges
+
+
Default
+
+ Primary + Secondary + Success + Danger + Warning + Info + Dark +
+
+
+
+
Pills
+ +
+ Primary + Secondary + Success + Danger + Warning + Info + Dark +
+
+
+
+ + +
+
+
Label Badges
+
+
Label Default
+ +
+ Primary + Secondary + Success + Danger + Warning + Info + Dark +
+
+
+
+
Label Pills
+ +
+ Primary + Secondary + Success + Danger + Warning + Info + Dark +
+
+
+
+ + +
+
+
Button with Badges
+
+
+
+ Default +
+ + +
+
+
+ Outline +
+ + +
+
+
+
+
+
+ + +
+
+
Badge Circle & Square Style
+
+
+
+
Basic
+
Default
+
+

+ 1 + 2 + 3 + 4 + 5 + 6 +

+

+ 1 + 2 + 3 + 4 + 5 + 6 +

+
+
+
+
Label
+
Default
+
+

+ 1 + 2 + 3 + 4 + 5 + 6 +

+

+ 1 + 2 + 3 + 4 + 5 + 6 +

+
+
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-buttons.html b/public/sneat-v3.0/html/ui-buttons.html new file mode 100644 index 0000000..46cc543 --- /dev/null +++ b/public/sneat-v3.0/html/ui-buttons.html @@ -0,0 +1,1190 @@ + + + + + + + + Demo: Buttons - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ + +
+
+
Basic Buttons
+
+ Default +
+ + + + + + + +
+
+
+
+ Rounded +
+ + + + + + + +
+
+
+
+ + + +
+
+
Outline Buttons
+
+ Default +
+ + + + + + + +
+
+
+
+ Rounded +
+ + + + + + + +
+
+
+
+ + + +
+
+
Buttons with Icons
+
+
+
+ Basic +
+ + +
+
+ + +
+
+
+ Outline +
+ + +
+
+ + +
+
+
+
+
+
+
+
+ Basic +
+ + + + +
+
+
+ Outline +
+ + + + +
+
+
+
+
+
+ + +
+
+
Button Options
+
+ Sizes +
+ + + + + +
+
+
+
+ Buttons State +
+ + + +
+
+
+
+ Block level buttons +
+
+ + +
+
+
+
+
+ + +
+
+
Button Plugin
+
+
+
+
Toggle states
+
+ + + +
+
+
+
Checkbox toggle buttons
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
Checkbox and radio
+ +
+ + +
+ + + + + + + + +
+
+ +
+ + + + + + +
+
+
+
+
+
+
+ + +
+
+
Button Group
+
+
+
+ Basic +
+
+ + + +
+
+
+
+ Outline +
+
+ + + +
+
+
+
+
+
+
+
+
+ Button Toolbar + +
+
+ Button Nesting +
+
+ + + +
+ + +
+
+
+
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-carousel.html b/public/sneat-v3.0/html/ui-carousel.html new file mode 100644 index 0000000..3e68a07 --- /dev/null +++ b/public/sneat-v3.0/html/ui-carousel.html @@ -0,0 +1,932 @@ + + + + + + + + Demo: Carousel - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
Bootstrap carousel
+ + +
+ +
+
Bootstrap crossfade carousel (dark)
+ + +
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-collapse.html b/public/sneat-v3.0/html/ui-collapse.html new file mode 100644 index 0000000..41d2a61 --- /dev/null +++ b/public/sneat-v3.0/html/ui-collapse.html @@ -0,0 +1,976 @@ + + + + + + + + Demo: Collapse - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
Collapse
+
+
+
+
Basic
+
+

+ Toggle the visibility of content across your project with a few classes and our JavaScript + plugins. +

+

+ + +

+
+
+ collapse-image + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industry's standard dummy text ever since the 1500s, when an unknown printer took a + galley of type and scrambled it to make a type specimen book. It has survived not only five + centuries, but also the leap into electronic typesetting, remaining essentially unchanged. + It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum + passages, and more recently with desktop publishing software like Aldus PageMaker including + versions of Lorem Ipsum.It is a long established fact that a reader will be distracted by + the readable content of a page when looking at its layout. The point of using Lorem Ipsum is + that it has a more-or-less normal distribution of letters. + +
+
+
+
+
+
+
+
Horizontal
+
+

+ The collapse plugin also supports horizontal collapsing.
+ If you want more detailed information, you can check the + documentation. +

+

+ +

+
+
+
+ Lorem Ipsum is simply dummy text of the printing and typesetting industry Ipsum has been + the. +
+
+
+
+
+
+
+
+
Multiple targets
+
+

Show and hide multiple elements by referencing them with a selector.

+ +

+ + + +

+
+
+
+
+ collapse-image + + All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as + necessary, making this the first true generator on the Internet. It uses a dictionary of + over 200 Latin words, combined with a handful of model sentence structures, to generate + Lorem Ipsum which looks reasonable. + +
+
+
+
+
+
+ collapse-image + + There are many variations of passages of Lorem Ipsum available, but the majority have + suffered alteration in some form, by injected humour, or randomised words which don't + look even slightly believable. If you are going to use a passage of Lorem Ipsum. + +
+
+
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-dropdowns.html b/public/sneat-v3.0/html/ui-dropdowns.html new file mode 100644 index 0000000..5fb3377 --- /dev/null +++ b/public/sneat-v3.0/html/ui-dropdowns.html @@ -0,0 +1,1801 @@ + + + + + + + + Demo: Dropdowns - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
Dropdowns
+ + +
+ Basic +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+ + +
+ + +
+ Outline +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+ +
+ +
+ Split +
+
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+
+
+ + +
+ +
+
+ +
+ Hidden arrow +
+
+ + +
+
+
+ + +
+ With Icon +
+ +
+
+ + +
+ Icon Dropdown + +
+ +
+
+
+ + + + +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-footer.html b/public/sneat-v3.0/html/ui-footer.html new file mode 100644 index 0000000..ae1c6d9 --- /dev/null +++ b/public/sneat-v3.0/html/ui-footer.html @@ -0,0 +1,895 @@ + + + + + + + + Demo: Footer - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ + + +
+ + + + +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-list-groups.html b/public/sneat-v3.0/html/ui-list-groups.html new file mode 100644 index 0000000..da2e248 --- /dev/null +++ b/public/sneat-v3.0/html/ui-list-groups.html @@ -0,0 +1,1216 @@ + + + + + + + + Demo: List groups - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+
+
List groups
+
+
+ + + + +
+ With Bagdes & Pills +
+
    +
  • + Soufflรฉ pastry pie ice + 5 +
  • +
  • Bear claw cake biscuit
  • +
  • + Tart tiramisu cake + 2 +
  • +
  • + Bonbon toffee muffin + 3 +
  • +
  • Dragรฉe tootsie roll
  • +
+
+
+ +
+
+
+
+
+ + + + +
+ With Icons +
+
    +
  • + + Soufflรฉ pastry pie ice +
  • +
  • + + Bear claw cake biscuit +
  • +
  • + + Tart tiramisu cake +
  • +
  • + + Bonbon toffee muffin +
  • +
  • + + Dragรฉe tootsie roll +
  • +
+
+
+ +
+
+
+
+
+ +
+ Numbered +
+
    +
  1. Bear claw cake biscuit
  2. +
  3. Soufflรฉ pastry pie ice
  4. +
  5. Tart tiramisu cake
  6. +
  7. Bonbon toffee muffin
  8. +
  9. Dragรฉe tootsie roll
  10. +
+
+
+ + +
+ List Group With Checkbox +
+
+ + + + + +
+
+
+ +
+
+
+ +
+
+ +
+
+
Javascript behavior
+
+
+ +
+ Vertical +
+
+
+ +
+
+
+
+ Donut sugar plum sweet roll biscuit. Cake oat cake gummi bears. Tart wafer wafer + halvah gummi bears cheesecake. Topping croissant cake sweet roll. Dessert fruitcake + gingerbread halvah marshmallow pudding bear claw cheesecake. Bonbon dragรฉe cookie + gummies. Pudding marzipan liquorice. Sugar plum dragรฉe cupcake cupcake cake dessert + chocolate bar. Pastry lollipop lemon drops lollipop halvah croissant. Pastry sweet + gingerbread lemon drops topping ice cream. +
+
+ Muffin lemon drops chocolate chupa chups jelly beans dessert jelly-o. Soufflรฉ + gummies gummies. Ice cream powder marshmallow cotton candy oat cake wafer. + Marshmallow gingerbread tootsie roll. Chocolate cake bonbon jelly beans lollipop + jelly beans halvah marzipan danish pie. Oat cake chocolate cake pudding bear claw + liquorice gingerbread icing sugar plum brownie. Toffee cookie apple pie cheesecake + bear claw sugar plum wafer gummi bears fruitcake. +
+
+ Ice cream dessert candy sugar plum croissant cupcake tart pie apple pie. Pastry + chocolate chupa chups tiramisu. Tiramisu cookie oat cake. Pudding brownie bonbon. + Pie carrot cake chocolate macaroon. Halvah jelly jelly beans cake macaroon jelly-o. + Danish pastry dessert gingerbread powder halvah. Muffin bonbon fruitcake dragรฉe + sweet sesame snaps oat cake marshmallow cheesecake. Cupcake donut sweet bonbon + cheesecake soufflรฉ chocolate bar. +
+
+ Marzipan cake oat cake. Marshmallow pie chocolate. Liquorice oat cake donut halvah + jelly-o. Jelly-o muffin macaroon cake gingerbread candy cupcake. Cake lollipop + lollipop jelly brownie cake topping chocolate. Pie oat cake jelly. Lemon drops + halvah jelly cookie bonbon cake cupcake ice cream. Donut tart bonbon sweet roll + soufflรฉ gummies biscuit. Wafer toffee topping jelly beans icing pie apple pie toffee + pudding. Tiramisu powder macaroon tiramisu cake halvah. +
+
+
+
+
+
+
+ Horizontal +
+ +
+
+ Donut sugar plum sweet roll biscuit. Cake oat cake gummi bears. Tart wafer wafer halvah + gummi bears cheesecake. Topping croissant cake sweet roll. Dessert fruitcake gingerbread + halvah marshmallow pudding bear claw cheesecake. Bonbon dragรฉe cookie gummies. Pudding + marzipan liquorice. Sugar plum dragรฉe cupcake cupcake cake dessert chocolate bar. Pastry + lollipop lemon drops lollipop halvah croissant. Pastry sweet gingerbread lemon drops + topping ice cream. +
+
+ Muffin lemon drops chocolate chupa chups jelly beans dessert jelly-o. Soufflรฉ gummies + gummies. Ice cream powder marshmallow cotton candy oat cake wafer. Marshmallow + gingerbread tootsie roll. Chocolate cake bonbon jelly beans lollipop jelly beans halvah + marzipan danish pie. Oat cake chocolate cake pudding bear claw liquorice gingerbread + icing sugar plum brownie. Toffee cookie apple pie cheesecake bear claw sugar plum wafer + gummi bears fruitcake. +
+
+ Ice cream dessert candy sugar plum croissant cupcake tart pie apple pie. Pastry + chocolate chupa chups tiramisu. Tiramisu cookie oat cake. Pudding brownie bonbon. Pie + carrot cake chocolate macaroon. Halvah jelly jelly beans cake macaroon jelly-o. Danish + pastry dessert gingerbread powder halvah. Muffin bonbon fruitcake dragรฉe sweet sesame + snaps oat cake marshmallow cheesecake. Cupcake donut sweet bonbon cheesecake soufflรฉ + chocolate bar. +
+
+ Marzipan cake oat cake. Marshmallow pie chocolate. Liquorice oat cake donut halvah + jelly-o. Jelly-o muffin macaroon cake gingerbread candy cupcake. Cake lollipop lollipop + jelly brownie cake topping chocolate. Pie oat cake jelly. Lemon drops halvah jelly + cookie bonbon cake cupcake ice cream. Donut tart bonbon sweet roll soufflรฉ gummies + biscuit. Wafer toffee topping jelly beans icing pie apple pie toffee pudding. Tiramisu + powder macaroon tiramisu cake halvah. +
+
+
+
+ +
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-modals.html b/public/sneat-v3.0/html/ui-modals.html new file mode 100644 index 0000000..8ba514a --- /dev/null +++ b/public/sneat-v3.0/html/ui-modals.html @@ -0,0 +1,1713 @@ + + + + + + + + Demo: Modals - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Bootstrap modals
+
+
+ +
+ Default +
+ + + + + +
+
+ + +
+ Vertically centered +
+ + + + + +
+
+ + +
+ Slide from Top +
+ + + + + +
+
+
+
+
+
+
+ +
+ YouTube Video +
+ + + + +
+
+ + +
+ Toggle Between Modals +
+ + + + + + +
+
+ + +
+ Fullscreen +
+ + + + +
+
+
+
+
+
+
+ +
+ Sizes + + + + + + +
+ + + + + +
+
+ + +
+ Scrolling long content + + + + +
+ + + + + +
+
+ + +
+ Backdrop +
+ + + + + +
+
+
+
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-navbar.html b/public/sneat-v3.0/html/ui-navbar.html new file mode 100644 index 0000000..1bd36e6 --- /dev/null +++ b/public/sneat-v3.0/html/ui-navbar.html @@ -0,0 +1,953 @@ + + + + + + + + Demo: Navbar - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
Example
+ + + + +
Supported content
+
+
Text
+ + +
Input Group
+ + +
Button
+ +
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-offcanvas.html b/public/sneat-v3.0/html/ui-offcanvas.html new file mode 100644 index 0000000..111a213 --- /dev/null +++ b/public/sneat-v3.0/html/ui-offcanvas.html @@ -0,0 +1,1240 @@ + + + + + + + + Demo: OffCanvas - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+
+
Placements
+
+
+ +
+ Start (Default) +
+ +
+
+
Offcanvas Start
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+ + +
+ End +
+ +
+
+
Offcanvas End
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+ + +
+ Top +
+ +
+
+
Offcanvas Top
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+ + +
+ Bottom +
+ +
+
+
Offcanvas Bottom
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+
+
+
+
+ +
+
+
Backdrop
+
+
+ +
+ Enable Body Scrolling +
+ +
+
+
Offcanvas Scroll
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+ + +
+ Enable backdrop (default) +
+ +
+
+
Enable backdrop
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+ + +
+ Enable Scrolling & Backdrop +
+ +
+
+
+ Enable both scrolling & backdrop +
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out + print, graphic or web designs. The passage is attributed to an unknown typesetter in + the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum + et Malorum for use in a type specimen book. +

+ + +
+
+
+
+
+
+
+
+ +
+
+
+
Responsive offcanvas
+
+ +
+ Resize your browser to xl breakpoint to show the responsive offcanvas toggle. +
+
+
+
offcanvas
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, + graphic or web designs. The passage is attributed to an unknown typesetter in the 15th + century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum + for use in a type specimen book. +

+ + +
+
+
+
+
+
+ +
+
+
+ +
Dark offcanvas
+
+ + +
+
+
Offcanvas
+ +
+
+

+ Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, + graphic or web designs. The passage is attributed to an unknown typesetter in the 15th + century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum + for use in a type specimen book. +

+ + +
+
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-pagination-breadcrumbs.html b/public/sneat-v3.0/html/ui-pagination-breadcrumbs.html new file mode 100644 index 0000000..a9c806d --- /dev/null +++ b/public/sneat-v3.0/html/ui-pagination-breadcrumbs.html @@ -0,0 +1,1119 @@ + + + + + + + + Demo: Pagination and breadcrumbs - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+
+
+
Pagination
+ +
+
+
+ Basic +
+ + + +
+
+
+
+
+
+ +
+
+
Sizes & Alignments
+
+
+
+ Sizes +
+ + + +
+
+
+ Alignments +
+ + + +
+
+
+
+
+
+ + + +
+
+
Breadcrumbs
+
+ + + + + + + + + +
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-progress.html b/public/sneat-v3.0/html/ui-progress.html new file mode 100644 index 0000000..c12ad77 --- /dev/null +++ b/public/sneat-v3.0/html/ui-progress.html @@ -0,0 +1,1205 @@ + + + + + + + + Demo: Progress bars - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Progress bars
+
+
Default
+
+
+
+
+
+
+
+
+
+
+
+
Height
+
+
+
+
+
+
+
+
+
+
+
+
With Label
+
+
+
+ 25% +
+
+
+
+ 75% +
+
+
+
+
+
+ + + +
+
+
Backgrounds
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+
Striped
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+
Animated
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+
Multiple bars
+
+
Default
+
+
+
+
+
+ +
Striped
+
+
+
+
+
+ +
Animated
+
+
+
+
+
+
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-spinners.html b/public/sneat-v3.0/html/ui-spinners.html new file mode 100644 index 0000000..5345b0b --- /dev/null +++ b/public/sneat-v3.0/html/ui-spinners.html @@ -0,0 +1,938 @@ + + + + + + + + Demo: Spinners - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Style
+
+
+
Border
+ +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+
+
+
Growing
+ +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+ Loading... +
+
+
+
+
+
+ + + +
+
+
Size
+
+ +
+
Large
+
+
+ Loading... +
+
+ Loading... +
+
+
+ + +
+
Medium
+
+
+ Loading... +
+
+ Loading... +
+
+
+ + +
+
Small
+
+
+ Loading... +
+
+ Loading... +
+
+
+
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-tabs-pills.html b/public/sneat-v3.0/html/ui-tabs-pills.html new file mode 100644 index 0000000..f7d44dc --- /dev/null +++ b/public/sneat-v3.0/html/ui-tabs-pills.html @@ -0,0 +1,1163 @@ + + + + + + + + Demo: Tabs and pills - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ +
Tabs
+ +
+
+
Basic
+ +
+
+
Filled Tabs
+ +
+
+ + +
+ + +
Pills
+ +
+
+
Basic
+ +
+ +
+
Filled Pills
+ +
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-toasts.html b/public/sneat-v3.0/html/ui-toasts.html new file mode 100644 index 0000000..c45d489 --- /dev/null +++ b/public/sneat-v3.0/html/ui-toasts.html @@ -0,0 +1,1136 @@ + + + + + + + + Demo: Toasts - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+ + + + + +
+
Bootstrap Toasts Example With Placement
+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + + +
+
Bootstrap Toasts Styles
+
+
+
Default
+
+ + + + + + + + + + + + + + + +
+
+
+
+
Translucent
+ +
+ + + + + + + + + + + + + + + +
+
+
+
+ +
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-tooltips-popovers.html b/public/sneat-v3.0/html/ui-tooltips-popovers.html new file mode 100644 index 0000000..a48f8aa --- /dev/null +++ b/public/sneat-v3.0/html/ui-tooltips-popovers.html @@ -0,0 +1,959 @@ + + + + + + + + Demo: Tooltips and popovers - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Tooltips
+
+
Directions
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+ + + +
+
+
Popovers
+
+
Directions
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
Custom popover
+ +
+ +
+
+
+
+ +
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sneat-v3.0/html/ui-typography.html b/public/sneat-v3.0/html/ui-typography.html new file mode 100644 index 0000000..37ce070 --- /dev/null +++ b/public/sneat-v3.0/html/ui-typography.html @@ -0,0 +1,1178 @@ + + + + + + + + Demo: Typography - UI elements | Sneat - Bootstrap Dashboard FREE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ + + + + + + +
+ +
+
+ +
+
+
Headings
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Heading 1 +

Bootstrap heading

+
Heading 2 +

Bootstrap heading

+
Heading 3 +

Bootstrap heading

+
Heading 4 +

Bootstrap heading

+
Heading 5 +
Bootstrap heading
+
Heading 6 +
Bootstrap heading
+
+
+
+ +
+
+
+ Customizing Headings Default +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Heading 1 +

Bootstrap heading

+
Heading 2 +

Bootstrap heading

+
Heading 3 +

Bootstrap heading

+
Heading 4 +

Bootstrap heading

+
Heading 5 +
Bootstrap heading
+
Heading 6 +
Bootstrap heading
+
+
+
+
+ +
+ +
+
+
Display headings
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Display 1 +

Display 1

+
Display 2 +

Display 2

+
Display 3 +

Display 3

+
Display 4 +

Display 4

+
Display 5 +

Display 5

+
Display 6 +

Display 6

+
+
+
+ +
+
+
Paragraph
+ + + + + + + + + + + + + + + +
Paragraph +

+ Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est + non commodo luctus. Duis mollis, est non commodo luctus.Duis mollis, est non commodo + luctus. +

+
Lead Text +

+ Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est + non commodo luctus.Duis mollis, est non commodo luctus. +

+
Muted text +

+ Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est + non commodo luctus. +

+
+
+
+
+ +
+ +
+
+
Inline Text Elements
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Text Highlight +

You can use the mark tag to highlight text.

+
Deleted Text +

This line of text is meant to be treated as deleted text.

+
No Longer Correct +

This line of text is meant to be treated as no longer accurate.

+
Addition +

+ This line of text is meant to be treated as an addition to the document. +

+
Underlined +

This line of text will render as underlined

+
Fine Print +

This line of text is meant to be treated as fine print.

+
Bold Text +

This line rendered as bold text.

+
Italicized Text +

This line rendered as italicized text.

+
Abbreviations +

attr

+

HTML

+
+
+
+
+
+ +
+ +
+
+
Blockquote
+
+
+

A well-known quote, contained in a blockquote element.

+
+
+
+
+ Naming a source +
+
+

A well-known quote, contained in a blockquote element.

+
+ +
+
+
+
+ Align Center +
+
+

A well-known quote, contained in a blockquote element.

+
+ +
+
+
+
+ Align Right +
+
+

A well-known quote, contained in a blockquote element.

+
+ +
+
+
+
+
+
+
Lists
+
+ Unstyled +
    +
  • Lorem ipsum dolor sit amet
  • +
  • Facilisis in pretium nisl aliquet
  • +
  • + Nulla volutpat aliquam velit +
      +
    • Phasellus iaculis neque
    • +
    • Ac tristique libero volutpat at
    • +
    +
  • +
  • Faucibus porta lacus fringilla vel
  • +
+
+
+
+ Inline +
    +
  • Lorem ipsum
  • +
  • Phasellus iaculis
  • +
  • Nulla volutpat
  • +
+
+
+
+ Description list alignment +
+
Description lists
+
A description list is perfect for defining terms.
+ +
Euismod
+
+

Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.

+
+ +
Malesuada porta
+
Etiam porta sem malesuada magna mollis euismod.
+ +
Truncated term is truncated
+
+ Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum. +
+ +
Nesting
+
+
+
Nested definition list
+
+ Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc. +
+
+
+
+
+
+
+
+
+ + + + + + +
+
+ +
+ +
+ + +
+
+ + +
+ Upgrade to Pro +
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/views/home/taskman/detail_item.blade.php b/resources/views/home/taskman/detail_item.blade.php new file mode 100644 index 0000000..494f017 --- /dev/null +++ b/resources/views/home/taskman/detail_item.blade.php @@ -0,0 +1,225 @@ +@extends('layouts.app_sneat') + +@section('content') +
+
+ +
+ {{-- Action Button --}} +
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+
+ {{-- Detail Task --}} +
+
+
+
+
{{ $dataTask->detail_task }}
+
+ Priority {{ ucfirst($dataTask->level) }} +
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+ 10:30 WIB + 03 Januari 2026 +
+
Version 1.0 Released
+
Initial release with core features
+
+
+ +
+
+ +
+
+
+ 03 Januari 2026 + 09:45 WIB +
+
Version 1.1 Released
+
+
    +
  • Initial release with core features
  • +
  • Initial release with core features
  • +
  • Initial release with core features
  • +
  • Initial release with core features
  • +
  • Initial release with core features
  • +
  • Initial release with core features
  • +
+
+
+
+ +
+
+ +
+
+
15 Januari 2026
+
Version 1.2 Released
+

Reporting dashboard & notifications

+
+
+ +
+
+ +
+
+
20 Januari 2026
+
Hotfix Update
+

Security vulnerability fix

+
+
+ +
+
+ +
+
+
25 Januari 2026
+
Cloud Integration
+

Integration with cloud services

+
+
+ +
+
+ +
+
+
30 Januari 2026
+
Performance Boost
+

Major performance improvements

+
+
+ +
+
+ +
+
+
+
+
+
+ + +
+ {{--
--}} +
+
+

Informasi

+

+ Timeline di kiri dapat di-scroll tanpa terlihat scrollbar. + Section ini tetap berada pada posisi sticky. +

+ +
+ +
    +
  • + + Scroll independen +
  • +
  • + + Clean tanpa scrollbar +
  • +
  • + + Responsive layout +
  • +
+
+
+ {{--
--}} +
+
+
+ + +@endsection diff --git a/resources/views/home/taskman/objective.blade.php b/resources/views/home/taskman/objective.blade.php index 4883390..87fb4d6 100644 --- a/resources/views/home/taskman/objective.blade.php +++ b/resources/views/home/taskman/objective.blade.php @@ -489,7 +489,7 @@ class="bx bx-caret-right"> @if (is_null($weeks->buffer_start) || is_null($weeks->buffer_end)) {{-- Hide Component Buffer Days --}} @else -  + {{ App\Helpers\TotalDays::countBufferDays($weeks->buffer_start, $weeks->buffer_end) }} Hari โฑ +  + {{ App\Helpers\TotalDays::countBufferDays($weeks->buffer_start, $weeks->buffer_end) }} Hari โฑ @endif
@@ -503,7 +503,7 @@ class="bx bx-caret-right"> @endforelse + data-bs-toggle="modal" data-bs-target="#modalTambahWeekly">
Tambah Weekly Plan @@ -754,6 +754,116 @@ class="accordion-collapse collapse {{ $isToday ? 'show' : '' }}"
+ {{-- Modal Tambah Weekly --}} + + {{-- Modal Hapus Objective Key --}}