mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
19 lines
309 B
Text
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>
|
|
}
|
|
}
|