aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/login.html
blob: abae4f80cf0bd925412e24690b07c11610c96371 (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
<!DOCTYPE html>
<html>
  <head>
    <title>PostgREST demo</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body>
    <div>
      <span>
        <a href="/index.html">Index</a>
        <a href="/login.html">Login</a>
        <a id="logout" href="">Logout</a>
      </span>
    </div>
    <form id="loginForm">
      <label>Username
        <input type="text" name="username" id="username">
      </label>
      <label>Password
        <input type="password" name="password" id="password">
      </label>
      <button role="submit">Log in</button>
    </form>
    <script src="./main.js"></script>
  </body>
</html>