45 lines
1.5 KiB
HTML
45 lines
1.5 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="https://commonhtml.thepenguinontheweb.tech/styles/common.css">
|
|
<!-- <link rel="stylesheet" href="http://localhost:4999/styles/common.css" /> -->
|
|
<link rel="stylesheet" href="styles/index.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/index.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" id="login-card">
|
|
<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 class="button" type="submit">Login</button>
|
|
</form>
|
|
|
|
<a href="/register">Create account.</a>
|
|
</div>
|
|
<div class="card blur hidden" id="login-success">
|
|
<h2>Login successful!</h2>
|
|
</div>
|
|
</main>
|
|
<footer id="footer" class="blur">
|
|
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |