diff options
| author | Jan Tuomi <jan.tuomi@eficode.com> | 2020-04-26 15:48:24 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@eficode.com> | 2020-04-26 15:48:24 +0300 |
| commit | 55f725a502011155f0943f2340ef3763f014ccc0 (patch) | |
| tree | c1915fd2c3f67e93b3fd406d018583bc6b050baa /frontend/src/login.html | |
Initial commit
Diffstat (limited to 'frontend/src/login.html')
| -rw-r--r-- | frontend/src/login.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend/src/login.html b/frontend/src/login.html new file mode 100644 index 0000000..abae4f8 --- /dev/null +++ b/frontend/src/login.html @@ -0,0 +1,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>
\ No newline at end of file |
