blob: 8efc1d6b63b2528c61a6c22f3c7bf75c696f3ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login — Player</title>
<link rel="stylesheet" href="/css/theme.css">
<link rel="stylesheet" href="/css/components.css">
<link rel="stylesheet" href="/css/login.css">
</head>
<body>
<div class="login-container" role="main">
<div class="login-brand">
<img src="/favicon.svg" alt="" class="login-logo">
<h1>Player</h1>
</div>
<form id="login-form" class="login-form" novalidate>
<label for="username">Username</label>
<input type="text" id="username" name="username" autocomplete="username" required autofocus>
<label for="password">Password</label>
<input type="password" id="password" name="password" autocomplete="current-password" required>
<button type="submit" class="btn btn-primary">Sign In</button>
<p id="login-error" class="error-message" role="alert" aria-live="polite"></p>
</form>
</div>
<script type="module" src="/js/app.js"></script>
</body>
</html>
|