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>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Pinniped</h1>
|
|
|
|
<p>{{ .IDPName }}</p>
|
|
|
|
|
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-28 16:11:51 +00:00
|
|
|
<input type="text" placeholder="Username" name="username" id="username" required>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
2022-04-28 19:07:04 +00:00
|
|
|
<label for="password"><b>Password</b></label>
|
2022-04-28 16:11:51 +00:00
|
|
|
<input type="password" placeholder="Password" name="password" id="password" required>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="state" id="state" value="{{.State}}">
|
|
|
|
</div>
|
|
|
|
|
2022-04-28 19:07:04 +00:00
|
|
|
<button type="submit" name="submit" id="submit">Login</button>
|
2022-04-28 16:11:51 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|