aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/index.html
blob: f3e9d0e9c2d43402af4cdce0a21c32ce4924ac50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>
    <button id="fetchTodosBtn">Fetch TODOs</button>
    <div id="todos"></div>
    <script src="./main.js"></script>
  </body>
</html>