rentease/internal/view/login.templ
2024-08-05 20:19:33 +02:00

17 lines
304 B
Text

package view
import "github.com/rjNemo/rentease/internal/view/layout"
templ Login(lfvm LoginFormViewModel) {
@layout.BaseLayout() {
<section>
<article>
<hgroup>
<h1>Welcome</h1>
<h2>Manage your rental property</h2>
</hgroup>
@LoginForm(lfvm)
</article>
</section>
}
}