34 lines
881 B
HTML
34 lines
881 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-width=cover" />
|
|
<title>Tauri App</title>
|
|
<script type="module" src="/login.js" defer></script>
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="Logo">
|
|
<button id="back"></button>
|
|
<img src="assets/Title.png" alt="Title" id="Title">
|
|
</div>
|
|
|
|
|
|
<div class="container" data-bs-theme="dark">
|
|
<p class="Error" id="Incorrect">Username or Password is incorrect!</p>
|
|
<input id="Username" placeholder="Username" />
|
|
<input id="Password" placeholder="Password" type="password" />
|
|
<div class="loginButtons">
|
|
<button id="Cancel">Cancel</button>
|
|
<button id="Login">Login</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|