mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-11 05:06:52 +00:00
34 lines
611 B
Text
34 lines
611 B
Text
package view
|
|
|
|
import (
|
|
"github.com/rjNemo/rentease/internal/view/layout"
|
|
)
|
|
|
|
templ Login() {
|
|
@layout.BaseLayout() {
|
|
<main class="container">
|
|
<section>
|
|
<h1>Login</h1>
|
|
<form method="POST">
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
placeholder="john@email.com"
|
|
aria-label="email"
|
|
autocomplete="email"
|
|
required
|
|
/>
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
placeholder="p4Ssw0rD"
|
|
aria-label="password"
|
|
autocomplete="password"
|
|
required
|
|
/>
|
|
<button type="submit">Log in</button>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
}
|
|
}
|