26 lines
999 B
HTML
26 lines
999 B
HTML
<article >
|
|
<section id = "forgot-password">
|
|
<h2 class="translation">password forgotten</h2>
|
|
<form id="forgot-password-form">
|
|
<label>
|
|
<input type="text" name='email' required>
|
|
<span class="translation">Email</span>
|
|
</label>
|
|
<button class="translation button">Request new password</button>
|
|
</form>
|
|
</section>
|
|
<section id = "reset-password" class="hidden">
|
|
<h2 class="translation">reset password</h2>
|
|
<form id="reset-password-form">
|
|
<label>
|
|
<input type="password" name='password1' required>
|
|
<span class="translation">Password</span>
|
|
</label>
|
|
<label>
|
|
<input type="password" name='password2' required>
|
|
<span class="translation">Repeat Password</span>
|
|
</label>
|
|
<button class="translation button">Reset password</button>
|
|
</form>
|
|
</section>
|
|
</article> |