Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/application/views/login.php
2018-10-28 17:36:46 +01:00

113 lines
4.8 KiB
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
<section id="login" class="container">
<div class="container" id="messages">
<?php if ($notice !== null) {
echo $notice;
$notice = null;
} ?>
</div>
<section id="formHolder">
<div class="row">
<!-- Brand Box -->
<div class="col-sm-6 brand">
<div class="heading">
<h2>KingOfDog</h2>
<p>Erstelle dir jetzt kostenlos einen Account und lege so richtig los auf dieser Webseite!</p>
</div>
<div class="loading-msg">
<i class="fa fa-cog fa-spin"></i>
</div>
<div class="success-msg">
<p>Willkommen! Du bist nun erfolgreich ein Mitglied geworden</p>
<a href="#" class="profile">Dein Profil</a>
</div>
</div>
<!-- Form Box -->
<div class="col-sm-6 form">
<!-- Login Form -->
<div class="login form-piece">
<form class="login-form" action="#" method="post">
<div class="form-group">
<label for="loginname">Nutzername oder E-Mail</label>
<input name="loginname" id="loginname" required>
</div>
<div class="form-group">
<label for="loginPassword">Passwort</label>
<input type="password" name="loginPassword" id="loginPassword" required>
</div>
<div class="form-group checkbox">
<label for="rememberMe">
<input type="checkbox" id="rememberMe" name="rememberMe">
Angemeldet bleiben
</label>
</div>
<div class="CTA">
<input type="submit" value="Login">
<a href="#" class="switch">Ich bin neu hier</a>
<a href="#" class="passwordForgot">Ich habe mein Passwort vergessen</a>
</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">
<div class="form-group">
<label for="name">Nutzername</label>
<input name="username" id="name" class="name">
<span class="error"></span>
</div>
<div class="form-group">
<label for="email">E-Mail Adresse</label>
<input type="email" name="email" id="email" class="email">
<span class="error"></span>
</div>
<div class="form-group">
<label for="password">Passwort (min. 8 Zeichen, Groß- & Kleinbuchstaben, Sonderzeichen,
Zahlen)</label>
<input type="password" name="password" id="password" class="pass">
<span class="error"></span>
</div>
<div class="form-group">
<label for="passwordCon">Passwort wiederholen</label>
<input type="password" name="passwordCon" id="passwordCon" class="passConfirm">
<span class="error"></span>
</div>
<div class="CTA">
<input type="submit" value="Registrieren" id="submit">
<a href="#" class="switch">Ich habe bereits ein Konto</a>
</div>
</form>
</div><!-- End Signup Form -->
</div>
</div>
</section>
</section>