sl-map-web 0.6.0

Web UI and JSON API for the SL map renderer
Documentation
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>sl-map-web — sign in</title>
    <link rel="stylesheet" href="/static/style.css" />
  </head>
  <body class="auth-page">
    <header>
      <h1>sl-map-web</h1>
      <p>Sign in to render Second Life maps.</p>
    </header>

    <section class="auth-card">
      <h2>Sign in</h2>
      <p id="login-status" class="status"></p>
      <form id="login-form" autocomplete="on">
        <label
          >Avatar UUID, <code>firstname.lastname</code>, or "Firstname Lastname"
          <input
            type="text"
            id="identifier"
            name="identifier"
            autocomplete="username"
            required
          />
        </label>
        <label
          >Password
          <input
            type="password"
            id="password"
            name="password"
            autocomplete="current-password"
            required
          />
        </label>
        <div class="row buttons">
          <button type="submit">Sign in</button>
        </div>
      </form>
      <p class="note">
        No account yet? Click the in-world registration object to receive a
        one-time link that lets you choose a password.
      </p>
    </section>

    <script src="/static/login.js"></script>
  </body>
</html>