summaryrefslogtreecommitdiff
path: root/player-server/web/bootstrap.html
blob: 5d66c0dae82129caa6a53b5b1e8fb783e34a1455 (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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap — 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">
    <div>
      <h1>Create Admin Account</h1>
      <p class="subtitle">One-time setup. This form is available only while no users exist.</p>
    </div>
  </div>
  <form id="bootstrap-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="new-password" required minlength="6">

    <label for="password-confirm">Confirm Password</label>
    <input type="password" id="password-confirm" name="password-confirm" autocomplete="new-password" required minlength="6">

    <button type="submit" class="btn btn-primary">Create Admin</button>
    <p id="bootstrap-error" class="error-message" role="alert" aria-live="polite"></p>
  </form>
</div>
<script type="module" src="/js/app.js"></script>
</body>
</html>