Webshop/public/registrieren/registrieren.html
2025-04-11 08:35:58 +02:00

52 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Styles/registrieren/registrieren.css">
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
<title>Registrieren</title>
</head>
<body>
<div class="wrapper">
<form action="register.php" method="POST">
<h1>Registrieren</h1>
<div class="input-box">
<input type="text" name="vorname" placeholder="Vorname" required>
<i class='bx bxs-user'></i>
</div>
<div class="input-box">
<input type="text" name="nachname" placeholder="Nachname" required>
<i class='bx bxs-user'></i>
</div>
<div class="input-box">
<input type="email" name="email" placeholder="E-Mail" required>
<i class='bx bxs-envelope'></i>
</div>
<div class="input-box">
<input type="password" id="regPassword" name="password" placeholder="Passwort" required>
<i class='bx bxs-lock-alt'></i>
</div>
<div class="input-box">
<input type="password" id="confirmPassword" name="confirmPassword" placeholder="Passwort bestätigen" required>
<i class='bx bxs-lock-alt'></i>
</div>
<!-- Sicherheitsbalken -->
<div id="passwordStrengthBar" class="password-strength-bar"></div>
<button type="submit" class="btn">Registrieren</button>
<div class="register-link">
<br>
<p>Bereits ein Konto? <a href="/login">Login</a></p>
</div>
</form>
</div>
</div>
<script src="./passwordValidation.js"></script>
</body>
</html>