themes/lavender/login.go.html

25 lines
824 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{.ServiceName}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
{{template "header.go.html" .}}
<main>
<div class="center-box sm:max-w-md">
<h1 class="box-title">Login</h1>
<form method="POST" action="/login" class="space-y-4 md:space-y-6">
<input type="hidden" name="redirect" value="{{.Redirect}}"/>
<div>
<label for="field_loginname">Your email</label>
<input type="email" name="loginname" id="field_loginname" placeholder="name@company.com" required>
</div>
<button type="submit" class="btn-green">Login</button>
</form>
</div>
</main>
</body>
</html>