Files
Kube/html/login.html

33 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>Login | Kube</title>
<link rel="icon" type="image/svg+xml" href="/assets/images/favicon.svg" />
<link rel="icon" type="image/png" href="/assets/images/favicon-96x96.png" sizes="96x96" />
<link rel="shortcut icon" href="/assets/images/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon-apple.png" />
<meta name="apple-mobile-web-app-title" content="Kube" />
<link rel="stylesheet" href="/css/styles.css">
<link rel="manifest" href="/manifest.json" />
<script src="/app.js" defer></script>
</head>
<body>
<div class="loginPane">
<div class="loginHeader">
<h2>Login</h2>
<h3>Please enter your login credentials below</h3>
</div>
<div class="loginForm">
<form>
<label for="username">Username</label><br>
<input type="text" id="username" name="username" placeholder="Enter your username"><br>
<label for="password">Password</label><br>
<input type="text" id="Password" name="password" placeholder="Enter your password"><br><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>