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