mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
28 lines
718 B
HTML
28 lines
718 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{.ServiceName}}</title>
|
|
<link rel="stylesheet" href="/theme/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>{{.ServiceName}}</h1>
|
|
</header>
|
|
<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>
|