Nashboard/static/login.html

37 lines
1000 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/main.css" />
<script src="js/nashboard.js"></script>
<script src="js/loginpage.js"></script>
<title>Document</title>
</head>
<body>
<div class="wrapper">
<div class="panel">
<h1>Login</h1>
<form onsubmit="handleLogin(event)">
<input
type="text"
autocomplete="username"
placeholder="User"
name="username"
id="username"
/>
<input
type="password"
autocomplete="current-password"
placeholder="Password"
name="password"
id="password"
/>
<input class="accent" type="submit" value="Go" />
</form>
</div>
</div>
</body>
</html>