Pőcze Bence
81a8153866
All checks were successful
mapguesser/pipeline/pr-develop This commit looks good
15 lines
653 B
PHP
15 lines
653 B
PHP
@extends(templates/layout_normal)
|
|
|
|
@section(main)
|
|
<h2>Request password reset</h2>
|
|
<div class="box">
|
|
<form id="passwordResetForm" action="/password/requestReset" method="post" data-redirect-on-success="/password/requestReset/success">
|
|
<input type="email" class="text big fullWidth" name="email" placeholder="Email address" value="<?= isset($email) ? $email : '' ?>" required autofocus>
|
|
<p id="passwordResetFormError" class="formError justify marginTop"></p>
|
|
<div class="right marginTop">
|
|
<button type="submit">Continue</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
@endsection
|