feat: improved ingress form and account settings

This commit is contained in:
Per Stark
2025-01-22 08:53:23 +01:00
parent 14e548c26f
commit d6a2139f4c
7 changed files with 56 additions and 41 deletions

View File

@@ -1,10 +1,10 @@
<div class="flex justify-center grow mt-2 sm:mt-4 gap-6">
<div class="container">
<!-- Search Bar -->
<div class="form-control w-full mx-auto mt-8">
<div class="form-control w-full mx-auto mt-8 flex flex-col justify-center">
<h1 class="textl-lg text-center pb-5">So here you can search all your ingressed documents</h1>
<input type="text" placeholder="Search your knowledge base" class="input input-bordered w-full" name="query"
hx-get="/search" hx-target="#search-results" />
<input type="text" placeholder="Search your knowledge base" class="mx-auto input input-bordered w-full sm:w-3/4"
name="query" hx-get="/search" hx-target="#search-results" />
<div id="search-results" class="mt-4">
<!-- Results will be populated here by HTMX -->
</div>