mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
27 lines
779 B
HTML
27 lines
779 B
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>Log in as: <span>{{.LoginName}}</span></div>
|
|
<div>
|
|
<form method="POST" action="/login">
|
|
<button type="submit" name="not-you" value="1">Not You?</button>
|
|
</form>
|
|
</div>
|
|
<div>
|
|
<form method="POST" action="/login">
|
|
<input type="hidden" name="redirect" value="{{.Redirect}}"/>
|
|
<input type="hidden" name="loginname" value="{{.LoginName}}"/>
|
|
<button type="submit">Continue</button>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|