mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Sign-in</title>
|
|
<link rel="stylesheet" href="/idp/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="main-content">
|
|
<section class="main-content-section">
|
|
<div class="wrapper">
|
|
<h1 class="title--white">Sign In</h1>
|
|
<div class="login-panel">
|
|
<div class="panel-body">
|
|
<form autocomplete="off" action="/idp/login" method="post">
|
|
|
|
<%if (errorMessage) { %>
|
|
<div class="input-wrap">
|
|
<label style="color: #D0021B">
|
|
<%= errorMessage %>
|
|
</label>
|
|
</div>
|
|
<% } %>
|
|
|
|
<div class="input-wrap">
|
|
<label for="email">Email:</label>
|
|
<input id="email" type="email" name="email" autofocus <% if (prefilled.email) { %> value="<%= prefilled.email %>" <% } %>>
|
|
</div>
|
|
|
|
<div class="input-wrap">
|
|
<label for="password">Password:</label>
|
|
<input id="password" type="password" name="password">
|
|
</div>
|
|
|
|
<div class="input-wrap">
|
|
<label class="checkbox"><input type="checkbox" name="remember" value="yes" checked>Stay signed in</label>
|
|
</div>
|
|
|
|
<button type="submit" name="submit" class="ids-link-filled">Sign In</button>
|
|
|
|
<hr />
|
|
<div class="space-between">
|
|
|
|
<a href="/idp/register" class="link">Register</a>
|
|
<a href="/idp/forgotpassword" class="link">Forgot Password</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|