aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/index.html
blob: 7ffb08fbcd7ee3b0ee1d52611a0d491eb639530f (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
<!DOCTYPE html>
<html>
  <head>
    <title>PostgREST demo</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body>
    <div>
      <button id="logout">Logout</button>
    </div>
    <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>
      <button id="google-login">Login with Google</button>
    </div>
    <button id="fetchTodosBtn">Fetch TODOs</button>
    <div id="todos"></div>
    <script src="./main.js"></script>
    <script src="https://apis.google.com/js/platform.js?onload=gapiInit" async defer></script>
  </body>
</html>