Webshop/public/login/index.html
2024-11-18 11:14:53 +01:00

27 lines
451 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<div>
<label>
E-Mail
<br>
<input type="text" id="loginMail">
</label>
<br>
<label>
Passwort
<br>
<input type="password" id="loginPassword">
</label>
<br>
<button onclick="login()">Login</button>
</div>
<!-- scripts -->
<script src="login.js"></script>
</body>
</html>