mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Forgot Password</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">Forgot Password</h1>
|
|
<div class="login-panel">
|
|
<div class="panel-body">
|
|
<form autocomplete="off" action="/idp/forgotpassword" 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="text" name="email" autofocus />
|
|
</div>
|
|
|
|
<button type="submit" name="submit" class="ids-link-filled">Send Recovery Email</button>
|
|
|
|
<hr />
|
|
<div class="space-between">
|
|
|
|
<a href="/idp/login" class="link">Log In</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|