mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
31 lines
1.4 KiB
HTML
31 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"></html>
|
|
<head>
|
|
<title>Login</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
|
|
</head>
|
|
<body>
|
|
<section class="centered">
|
|
<main id="login-holder">
|
|
<div class=>
|
|
<h1 id="login-header">Login</h1>
|
|
|
|
<div id="login-error-msg-holder">
|
|
<p id="login-error-msg">Invalid username <span id="error-msg-second-line">and/or password</span></p>
|
|
</div>
|
|
|
|
<form id="login-form">
|
|
<input type="text" name="username" id="username-field" class="login-form-field" placeholder="Username">
|
|
<input type="password" name="password" id="password-field" class="login-form-field" placeholder="Password">
|
|
<input type="submit" value="Login" id="login-form-submit">
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</section>
|
|
<script src="js/python3/login.js"></script>
|
|
</body> |