Cleanup packages

This commit is contained in:
DariusIII
2026-04-14 11:00:01 +02:00
parent 916487e407
commit 3b78ea0a6e
16 changed files with 448 additions and 2885 deletions
+3 -2
View File
@@ -44,7 +44,8 @@
<p class="text-gray-600 dark:text-gray-400">Don't hesitate to send us a message. Our team will be happy to help you.</p>
</div>
{{ html()->form()->method('POST')->action(route('contact-us'))->open() }}
<form method="POST" action="{{ route('contact-us') }}">
@csrf
<div class="mb-6">
<label for="username" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Name <span class="text-red-500">*</span>
@@ -113,7 +114,7 @@
<i class="fas fa-paper-plane mr-2"></i>Send Message
</button>
</div>
{{ html()->form()->close() }}
</form>
</div>
<div class="surface-panel-alt px-6 py-4 border-t rounded-b-lg text-center">
+3 -2
View File
@@ -49,7 +49,8 @@
</div>
</div>
{{ html()->form()->method('POST')->action(url("mymovies?id=do{$type}"))->id('mymovies')->class('space-y-6')->open() }}
<form method="POST" action="{{ url("mymovies?id=do{$type}") }}" id="mymovies" class="space-y-6">
@csrf
<input type="hidden" name="imdb" value="{{ $imdbid }}"/>
@if(!empty($from))
<input type="hidden" name="from" value="{{ $from }}" />
@@ -82,7 +83,7 @@
<i class="fa fa-arrow-left mr-2"></i>Back to My Movies
</a>
</div>
{{ html()->form()->close() }}
</form>
</div>
</div>
</div>
+3 -2
View File
@@ -49,7 +49,8 @@
</div>
</div>
{{ html()->form()->method('POST')->action(url("myshows?action=do{$type}"))->id('myshows')->class('space-y-6')->open() }}
<form method="POST" action="{{ url("myshows?action=do{$type}") }}" id="myshows" class="space-y-6">
@csrf
<input type="hidden" name="id" value="{{ $video }}"/>
@if(!empty($from))
<input type="hidden" name="from" value="{{ $from }}" />
@@ -82,7 +83,7 @@
<i class="fa fa-arrow-left mr-2"></i>Back to My Shows
</a>
</div>
{{ html()->form()->close() }}
</form>
</div>
</div>
</div>
+1 -1
View File
@@ -40,7 +40,7 @@
<div class="lg:col-span-1">
<!-- Avatar -->
<div class="flex justify-center mb-6">
<img src="{{ !empty($user->email) && filter_var($user->email, FILTER_VALIDATE_EMAIL) ? Gravatar::get($user->email, ['size' => 120, 'default' => 'mp']) : 'https://www.gravatar.com/avatar/?d=mp&s=120' }}"
<img src="{{ !empty($user->email) && filter_var($user->email, FILTER_VALIDATE_EMAIL) ? 'https://www.gravatar.com/avatar/' . md5(strtolower(trim($user->email))) . '?s=120&d=mp' : 'https://www.gravatar.com/avatar/?d=mp&s=120' }}"
alt="{{ $user->username }}"
class="w-30 h-30 rounded-full border-4 border-gray-200 dark:border-gray-700 shadow-lg">
</div>