82 lines
2.8 KiB
PHTML
82 lines
2.8 KiB
PHTML
<!DOCTYPE html>
|
|
<html lang="HTML-5">
|
|
<head>
|
|
<title>VR Contact</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="../../CSS/style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<?php
|
|
include dirname(__DIR__) . '/header.phtml';
|
|
?>
|
|
<div class="inhalt">
|
|
<div class="login-container">
|
|
<h1>Registrieren</h1>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-vorname" type="text" placeholder="Vorname">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-nachname" type="text" placeholder="Nachname">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-email" type="text" placeholder="E-Mail">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-passwort" type="text" placeholder="Passwort">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-passwort-repeat" type="text" placeholder="Passwort wiederholen">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-strasse" type="text" placeholder="Straße">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-hausnr" type="text" placeholder="Hausnr.">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-postleitzahl" type="text" placeholder="Postleitzahl">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-ort" type="text" placeholder="Ort">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-land" type="text" placeholder="Land">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-tel" type="text" placeholder="Telefonnr.">
|
|
</label>
|
|
</form>
|
|
<button class="button-register">Registrieren</button>
|
|
<a class="link-konto-erstellen">Login</a>
|
|
|
|
</div>
|
|
</div>
|
|
<?php
|
|
include dirname(__DIR__) . '/footer.phtml';
|
|
?>
|
|
<body>
|
|
</html>
|
|
|