blob: 0873f7052721899e4bd2239525f3f0204e737989 (
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
29
30
31
32
33
|
<!DOCTYPE html>
<html>
<head>
<title>PostgREST demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div>
<span id="displayName"></span>
<button id="logout" style="display: none">Logout</button>
</div>
<div id="loginWidgets" style="display: none">
<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>
<h1>TODOs</h1>
<button id="fetchTodosBtn">Fetch TODOs</button>
<div id="todos"></div>
</div>
<script src="./main.js"></script>
<script src="https://apis.google.com/js/platform.js?onload=gapiInit" async defer></script>
</body>
</html>
|