mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
22 lines
599 B
Plaintext
22 lines
599 B
Plaintext
<h1>Reset password</h1>
|
|
<form method="post">
|
|
<%if (errorMessage) { %>
|
|
<p class="error"><%= errorMessage %></p>
|
|
<% } %>
|
|
|
|
<fieldset>
|
|
<ol>
|
|
<li>
|
|
<label for="password">New password</label>
|
|
<input id="password" type="password" name="password" placeholder="">
|
|
</li>
|
|
<li>
|
|
<label for="confirmPassword">Confirm new password</label>
|
|
<input id="confirmPassword" type="password" name="confirmPassword" placeholder="">
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
|
|
<p class="actions"><button type="submit" name="submit">Reset password</button></p>
|
|
</form>
|