38 lines
1.0 KiB
PHTML
38 lines
1.0 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>Anmelden</h1>
|
|
<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>
|
|
<button class="button-loggin">Login</button>
|
|
<a class="link-passwort-vergessen">Passwort vergessen?</a>
|
|
<a class="link-konto-erstellen">Konto erstellen</a>
|
|
|
|
</div>
|
|
</div>
|
|
<?php
|
|
include dirname(__DIR__) . '/footer.phtml';
|
|
?>
|
|
<body>
|
|
</html>
|
|
|