diff options
Diffstat (limited to 'frontend/src/index.html')
| -rw-r--r-- | frontend/src/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/frontend/src/index.html b/frontend/src/index.html new file mode 100644 index 0000000..f3e9d0e --- /dev/null +++ b/frontend/src/index.html @@ -0,0 +1,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>
\ No newline at end of file |
