rentease/internal/view/login.templ
2024-05-25 16:38:25 +02:00

20 lines
543 B
Text

package view
import (
"github.com/rjNemo/rentease/internal/view/layout"
)
templ Login() {
@layout.BaseLayout() {
<main class="container">
<section>
<h1>Welcome</h1>
<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>
</form>
</section>
</main>
}
}