rentease/internal/view/login.templ

19 lines
309 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>
}
}