rentease/internal/view/login.templ
Ruidy ffa7f140d1
use daisyUI (#25)
* use tailwind and daisyui

* split the layout in multiple components

* remove unused code

* footer compoonent

* login form

log

* booking table

fd

* cancel style

* header

* booking form

* new booking

* line items

* line item

* report

* uniform headings
2024-11-16 19:24:26 +01:00

17 lines
463 B
Text

package view
import "github.com/rjNemo/rentease/internal/view/layout"
templ Login(lfvm LoginFormViewModel) {
@layout.BaseLayout() {
<section class="flex justify-center items-center">
<div class="w-full max-w-md">
<hgroup class="text-center py-8">
<h1 class="text-4xl font-bold text-primary">Welcome</h1>
<h2 class="text-xl text-base-content/70">Manage your rental property</h2>
</hgroup>
@LoginForm(lfvm)
</div>
</section>
}
}