33 lines
953 B
HTML
33 lines
953 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="frontend/style.css"/>
|
|
<title>Login</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@500&display=swap" rel="stylesheet">
|
|
<head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
|
|
<div id="signin">
|
|
<p id="login">Sign In</p>
|
|
</div>
|
|
|
|
<div class="idiv">
|
|
<input class="input" id="username" type="text">
|
|
<input class="input" id="password" type="password">
|
|
</div>
|
|
|
|
<div class="buttons">
|
|
<button id="loginb">Login</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<script src="frontend/index.js"></script>
|
|
</body>
|
|
</html> |