19 lines
472 B
HTML
19 lines
472 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Authenticate</title>
|
|
</head>
|
|
<body>
|
|
{{#if login}}
|
|
<form method="post">
|
|
<input type="password" placeholder="password" />
|
|
<input value="Login" type="submit" />
|
|
</form>
|
|
{{else}}
|
|
<form method="post">
|
|
<input value="Consent to add scope openid" type="submit" />
|
|
</form>
|
|
{{/if}}
|
|
<div>{{details}}</div>
|
|
</body>
|
|
</html>
|