mirror of
https://github.com/1f349/themes.git
synced 2024-11-09 22:32:48 +00:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!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>
|
|
<div>
|
|
<label for="field_loginname">Log in as</label>
|
|
<input disabled value="{{.LoginName}}" type="email" name="loginname" id="field_loginname" placeholder="name@company.com" required>
|
|
</div>
|
|
<form method="POST" action="/login">
|
|
<button type="submit" name="not-you" value="1" class="btn-red">Not You?</button>
|
|
</form>
|
|
<form method="POST" action="/login">
|
|
<input type="hidden" name="redirect" value="{{.Redirect}}"/>
|
|
<input type="hidden" name="loginname" value="{{.LoginName}}"/>
|
|
<button type="submit" class="btn-green">Continue</button>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|