PengLogin/public/register.html
2025-09-05 22:47:10 +02:00

48 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PengRegister</title>
<link rel="stylesheet" href="https://commonhtml.thepenguinontheweb.tech/styles/common.css">
<!-- <link rel="stylesheet" href="http://localhost:4999/styles/common.css" /> -->
<link rel="stylesheet" href="styles/register.css">
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
<script src="https://commonhtml.thepenguinontheweb.tech/scripts/common.js" defer></script>
<script src="scripts/register.js" defer></script>
<script src="scripts/common.js" defer></script>
</head>
<body id="body" class="body">
<header id="header" class="blur">
</header>
<main>
<div class="card blur">
<h2>Register</h2>
<form id="register-form" class="form">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirmPassword" required>
<button type="submit" class="button">Register</button>
</form>
<a href="/login">Login Page.</a>
</div>
</main>
<footer id="footer" class="blur">
</footer>
</body>
</html>