rentease/internal/view/login.templ
2024-06-08 12:27:05 +02:00

24 lines
685 B
Text

package view
import (
"github.com/rjNemo/rentease/internal/view/layout"
)
templ Login() {
@layout.BaseLayout() {
<section>
<article>
<hgroup>
<h1>Welcome</h1>
<h2>Manage your rental property</h2>
</hgroup>
<form hx-post="/">
<input type="email" name="email" placeholder="john@email.com" aria-label="email" autocomplete="email" autofocus required=""/>
<input type="password" name="password" placeholder="p4Ssw0rD" aria-label="password" autocomplete="password" required=""/>
<button type="submit">Log in</button>
<small> Registration is disabled. Please ask an admin to activate it. </small>
</form>
</article>
</section>
}
}