Archived
1
0

Add email support for password reset

This commit is contained in:
Marcel
2018-10-28 17:36:46 +01:00
parent 7345730057
commit 8c539b98e2
5 changed files with 448 additions and 20 deletions

View File

@@ -23,7 +23,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
<div class="success-msg">
<p>Willkommen! Du bist nun erfolgreich ein Mitglied geworden</p>
<a href="#" class="profile d-none">Dein Profil</a>
<a href="#" class="profile">Dein Profil</a>
</div>
</div>
@@ -44,7 +44,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
<div class="form-group checkbox">
<label for="rememberMe">
<input type="checkbox" name="rememberMe">
<input type="checkbox" id="rememberMe" name="rememberMe">
Angemeldet bleiben
</label>
</div>
@@ -56,6 +56,22 @@ defined('BASEPATH') OR exit('No direct script access allowed');
</div>
</form>
</div><!-- End Login Form -->
<!-- Reset Password Form -->
<div class="reset form-piece" style="display: none">
<form class="reset-form" action="#" method="post">
<div class="form-group">
<label for="resetname">Nutzername oder E-Mail</label>
<input name="resetname" id="resetname" required>
</div>
<div class="CTA">
<input type="submit" value="Zurücksetzen">
<a href="#" class="passwordForgot">Zurück</a>
</div>
</form>
</div><!-- End Reset Password Form -->
<!-- Signup Form -->
<div class="signup form-piece switched">
<form class="signup-form" action="#" method="post">