2022-04-28 16:11:51 +00:00
|
|
|
<!--
|
|
|
|
Copyright 2022 the Pinniped contributors. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
--><!DOCTYPE html>
|
|
|
|
<html>
|
2022-04-29 17:36:13 +00:00
|
|
|
<head>
|
|
|
|
<title>{{.Title}}</title>
|
|
|
|
</head>
|
2022-04-28 16:11:51 +00:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Pinniped</h1>
|
|
|
|
<p>{{ .IDPName }}</p>
|
2022-04-29 17:36:13 +00:00
|
|
|
{{if .HasAlertError}}
|
|
|
|
<div class="alert">
|
|
|
|
<span>{{.AlertMessage}}</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2022-04-28 19:07:04 +00:00
|
|
|
<form action="/login" method="post">
|
2022-04-28 16:11:51 +00:00
|
|
|
|
|
|
|
<div>
|
2022-04-28 19:07:04 +00:00
|
|
|
<label for="username"><b>Username</b></label>
|
2022-04-29 17:36:13 +00:00
|
|
|
<input type="text" name="username" id="username" autocomplete="username" required>
|
2022-04-28 16:11:51 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
2022-04-28 19:07:04 +00:00
|
|
|
<label for="password"><b>Password</b></label>
|
2022-04-29 17:36:13 +00:00
|
|
|
<input type="password" name="password" id="password current-password" autocomplete="current-password" required>
|
2022-04-28 16:11:51 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="state" id="state" value="{{.State}}">
|
|
|
|
</div>
|
|
|
|
|
2022-04-29 17:36:13 +00:00
|
|
|
<button type="submit" name="submit" id="submit">Log in</button>
|
2022-04-28 16:11:51 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|