datei account_erstellen.txt gelöscht

This commit is contained in:
Leah Glück 2026-03-22 19:40:25 +01:00
parent 234f4dd97d
commit c34fdd250c

View File

@ -1,202 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kontaktseite - Invité</title>
<link rel="stylesheet" href="stylesheet.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
max-width: 1000px;
width: 100%;
display: flex;
gap: 20px;
overflow: hidden;
}
.image-section {
flex: 1;
background-color: #e8f4f8;
display: flex;
align-items: center;
justify-content: center;
min-height: 500px;
}
.image-section img {
width: 100%;
height: 100%;
object-fit: cover;
}
.form-section {
flex: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
}
.image-section {
min-height: 300px;
}
}
h1 {
color: #333;
margin-bottom: 10px;
text-align: center;
}
.info-box {
background-color: #e8f4f8;
border-left: 4px solid #0084ff;
padding: 15px;
margin-bottom: 30px;
border-radius: 4px;
font-size: 14px;
color: #333;
line-height: 1.5;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 6px;
color: #333;
font-weight: bold;
font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
transition: border-color 0.3s ease;
font-family: Arial, sans-serif;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
outline: none;
border-color: #0084ff;
box-shadow: 0 0 5px rgba(0, 132, 255, 0.3);
}
button {
width: 100%;
padding: 12px;
background-color: #0084ff;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0073e6;
}
button:active {
background-color: #0063cc;
}
.login-hint {
text-align: center;
margin-top: 20px;
color: #666;
font-size: 14px;
}
.login-hint a {
color: #0084ff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.login-hint a:hover {
color: #0073e6;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="image-section">
<img src="cooking.jpg" alt="Social Cooking">
</div>
<div class="form-section">
<h1>Erstelle deinen Account</h1>
<div class="info-box">
<strong>Hinweis:</strong> Sichtbar auf der Plattform ist nur der Vorname, erst einer Anmeldung zum Event ist der Nachname für die Teilnehmenden sichtbar.
</div>
<form>
<div class="form-group">
<label for="vorname">Vorname *</label>
<input type="text" id="vorname" name="vorname" required placeholder="Dein Vorname">
</div>
<div class="form-group">
<label for="nachname">Nachname *</label>
<input type="text" id="nachname" name="nachname" required placeholder="Dein Nachname">
</div>
<div class="form-group">
<label for="email">E-Mail Adresse *</label>
<input type="email" id="email" name="email" required placeholder="deine.email@example.com">
</div>
<div class="form-group">
<label for="passwort">Passwort *</label>
<input type="password" id="passwort" name="passwort" required placeholder="Mindestens 8 Zeichen">
</div>
<button type="submit">Konto erstellen</button>
<div class="login-hint">
Du hast bereits einen Account? <a href="login.html">Hier geht's zum Log-in</a>
</div>
</form>
</div>
</div>
</body>
</html>