fix: http urls

This commit is contained in:
2025-04-23 22:48:15 -05:00
parent 7d84e13a40
commit c12a33de86
4 changed files with 4 additions and 4 deletions

View File

@@ -4,5 +4,5 @@ controllersIndex:
namespace: App\Controller
type: attribute
defaults:
schemes: [ https ]
schemes: [ 'https' ]

View File

@@ -3,7 +3,7 @@
<ul class="mt-6 space-y-1">
<li>
<a
href="#"
href="{{ path('app_index') }}"
class="block rounded-lg
bg-orange-500 hover:bg-opacity-80 bg-clip-padding backdrop-filter backdrop-blur-md bg-opacity-60
px-4 py-2 text-sm font-medium text-gray-50"

View File

@@ -1,6 +1,6 @@
<div {{ attributes }} class="w-full max-w-sm min-w-[200px]">
<div class="relative">
<form action="{{ url('app_search') }}">
<form action="{{ path('app_search') }}">
<input
name="term"
class="w-full bg-orange-500 rounded-md bg-clip-padding backdrop-filter

View File

@@ -10,7 +10,7 @@
</p>
</div>
<a class="h-9 rounded-md py-1 px-2 bg-green-600 text-gray-50"
href="{{ url('app_search_result', {mediaType: mediaType, tmdbId: tmdbId}) }}"
href="{{ path('app_search_result', {mediaType: mediaType, tmdbId: tmdbId}) }}"
>choose</a>
</div>
</div>