PengLogin/public/index.html
2025-06-13 23:25:11 +02:00

40 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PengLogin</title>
<link rel="stylesheet" href="styles/common.css">
<link rel="stylesheet" href="styles/index.css">
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
<script src="scripts/common.js" defer></script>
<script src="scripts/index.js" defer></script>
</head>
<body id="body" class="body">
<header id="header" class="blur">
</header>
<main>
<div class="card blur">
<h2>LOGIN</h2>
<form id="login-form" class="form">
<label for="username or email">Username or email:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
<a href="/register">Create account.</a>
</div>
</main>
<footer id="footer" class="blur">
</footer>
</body>
</html>