Initial commit as of 2018-10-16
This commit is contained in:
97
application/views/login.php
Normal file
97
application/views/login.php
Normal file
@@ -0,0 +1,97 @@
|
||||
<?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 d-none">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" 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 -->
|
||||
<!-- 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>
|
Reference in New Issue
Block a user