Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e38498f69b | |||
| 490f341875 | |||
| b1b28864ea |
@@ -6,8 +6,8 @@ pwa:
|
|||||||
start_url: "/"
|
start_url: "/"
|
||||||
display: "standalone"
|
display: "standalone"
|
||||||
id: "/"
|
id: "/"
|
||||||
background_color: "#083344"
|
background_color: "#f98e44"
|
||||||
theme_color: "#f98e44"
|
theme_color: "#083344"
|
||||||
description: Torsearch provides a simple and intuitive way to manage your personal media library.
|
description: Torsearch provides a simple and intuitive way to manage your personal media library.
|
||||||
icons:
|
icons:
|
||||||
- src: "icon.png"
|
- src: "icon.png"
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ security:
|
|||||||
login_path: '/login/oidc'
|
login_path: '/login/oidc'
|
||||||
check_path: '/login/oidc/auth'
|
check_path: '/login/oidc/auth'
|
||||||
enable_end_session_listener: true
|
enable_end_session_listener: true
|
||||||
|
http_basic:
|
||||||
|
realm: Secured Area
|
||||||
entry_point: form_login
|
entry_point: form_login
|
||||||
|
|
||||||
# activate different ways to authenticate
|
# activate different ways to authenticate
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<header {{ attributes }} class="bg-cyan-950 z-40">
|
<header {{ attributes }} class="bg-cyan-950 z-40">
|
||||||
<div class="px-4 sm:px-6 lg:px-8">
|
<div class="px-4 sm:px-6 lg:px-8">
|
||||||
<div class="h-16 flex flex-row items-center justify-between">
|
<div class="h-16 flex flex-row items-center justify-between">
|
||||||
<a href="{{ path('app_index') }}" class="text-2xl text-orange-500 mr-4 md:hidden">T</a>
|
<a href="{{ path('app_index') }}" class="text-2xl font-extrabold text-orange-500 mr-4 md:hidden">T</a>
|
||||||
<twig:SearchBar />
|
<twig:SearchBar />
|
||||||
<div class="md:flex md:items-center md:gap-12">
|
<div class="md:flex md:items-center md:gap-12">
|
||||||
<nav aria-label="Global" class="md:block">
|
<nav aria-label="Global" class="md:block">
|
||||||
@@ -32,6 +32,9 @@
|
|||||||
{% for message in app.flashes('warning') %}
|
{% for message in app.flashes('warning') %}
|
||||||
<twig:Alert :title="'Warning'" :message="message" :alert_id="''" type="warning" data-controller="alert" />
|
<twig:Alert :title="'Warning'" :message="message" :alert_id="''" type="warning" data-controller="alert" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% for message in app.flashes('success') %}
|
||||||
|
<twig:Alert :title="'Success'" :message="message" :alert_id="''" type="warning" data-controller="alert" />
|
||||||
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user