forked from projects/fipamo
e7fd91c152
Rebuilt forms for resetting the password, creating a fresh site and restoring a site from a backup, as well as adjusting the accompanying scripts that handle those processes.
22 lines
1.1 KiB
Twig
22 lines
1.1 KiB
Twig
<div>
|
|
<a href="/dashboard">
|
|
<img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/>
|
|
</a>
|
|
</div>
|
|
<form id="reset" class='login' name="reset" action="/dashboard/login" method="POST">
|
|
|
|
<input type="password" id="new_password" name="new_password" class="form-control" placeholder="New Password" required/>
|
|
<input type="password" id="new_password2" name="new_password2" class="form-control" placeholder="New Password Confirm" required">
|
|
<input type="password" id="secret" name="secret" class="form-control" placeholder="Account Secret" required/>
|
|
<button id="reset-btn" class='login-btn' type='submit'>
|
|
RESET PASSWORD
|
|
</button><br/>
|
|
<p>
|
|
Use this to get your secret to verify it's you. If your email is set up, the secret will be sent there. If not, the form will be updated automatically(but please set up your email, once you reset your password).
|
|
</p>
|
|
<input type="text" id="email" name="email" class="form-control" placeholder="email to verify" required/>
|
|
<button id="get-secret-btn" class='login-btn' type='submit'>
|
|
VERIFY EMAIL
|
|
</button><br/><br/>
|
|
</form>
|