Update register.php
This commit is contained in:
+29
-19
@@ -23,27 +23,37 @@
|
|||||||
include_once 'includes/navbar.php';
|
include_once 'includes/navbar.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<main>
|
<main class="login-page">
|
||||||
<div style="width: 50%">
|
<div class="login-container">
|
||||||
<h1 style="width: 50%; text-align: center">Jetzt Registrieren!</h1><br>
|
<div class="logo-wrapper">
|
||||||
|
<img src="images/logos/logo.png" alt="Logo" class="login-logo">
|
||||||
<p style="width: 80%;"> Email:</p>
|
|
||||||
<input type="email" name="email" style="width: 80%;" placeholder="mustermann@web.de" required>
|
|
||||||
<p style="width: 80%;"> Vorname:</p>
|
|
||||||
<input type="text" name="vorname" style="width: 80%;" placeholder="Max" required>
|
|
||||||
<p style="width: 80%;"> Nachname:</p>
|
|
||||||
<input type="text" name="nachname" style="width: 80%;" placeholder="Mustermann" required>
|
|
||||||
|
|
||||||
<p style="width: 80%;"> Passwort:</p>
|
|
||||||
<input type="password" name="password" style="width: 80%;" placeholder="Passwort" required>
|
|
||||||
<div style="width: 80%;">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" value="remember-me"> angemeldet bleiben
|
|
||||||
</label>
|
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" value="anmelden" name="loginSubmit" style="width: 80%;">kostenlos registrieren</button>
|
|
||||||
|
<h1>Jetzt Registrieren!</h1>
|
||||||
|
|
||||||
|
<form>
|
||||||
|
<p class="input-label">Email:</p>
|
||||||
|
<input type="email" name="email" class="login-input" placeholder="mustermann@web.de" required>
|
||||||
|
|
||||||
|
<p class="input-label">Vorname:</p>
|
||||||
|
<input type="text" name="vorname" class="login-input" placeholder="Max" required>
|
||||||
|
|
||||||
|
<p class="input-label">Nachname:</p>
|
||||||
|
<input type="text" name="nachname" class="login-input" placeholder="Mustermann" required>
|
||||||
|
|
||||||
|
<p class="input-label">Passwort:</p>
|
||||||
|
<input type="password" name="password" class="login-input" placeholder="Passwort" required>
|
||||||
|
|
||||||
|
<div class="checkbox-wrapper">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" value="remember-me"> angemeldet bleiben
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="submit" value="anmelden" name="loginSubmit" class="login-button">kostenlos registrieren</button>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<?php
|
<?php
|
||||||
include_once 'includes/footer.php';
|
include_once 'includes/footer.php';
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user