diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-05-30 00:09:11 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-05-30 00:09:11 +0200 |
| commit | 532cc431d1c5ca1ffcf429a4ccb94edc7848fe7a (patch) | |
| tree | c4422c4d54e01f63bae391cd95788cad74f59fbb /src/filters/auth/login.html | |
| parent | 8b39940a58c28bc1bbe291eb5229e9ce1444e33c (diff) | |
| download | gnix-532cc431d1c5ca1ffcf429a4ccb94edc7848fe7a.tar gnix-532cc431d1c5ca1ffcf429a4ccb94edc7848fe7a.tar.bz2 gnix-532cc431d1c5ca1ffcf429a4ccb94edc7848fe7a.tar.zst | |
rename filters dir
Diffstat (limited to 'src/filters/auth/login.html')
| -rw-r--r-- | src/filters/auth/login.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/filters/auth/login.html b/src/filters/auth/login.html deleted file mode 100644 index c7782bd..0000000 --- a/src/filters/auth/login.html +++ /dev/null @@ -1,35 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <title>Gnix Login</title> - <style> - body { - background-color: grey; - } - form { - margin: auto; - width: 200px; - padding: 20px; - border: 2px solid black; - background-color: white; - } - input[type="text"], - input[type="password"] { - box-sizing: border-box; - width: 100%; - margin-bottom: 1em; - } - </style> - </head> - <body> - <form action="/_gnix_login" method="post"> - <label for="username">Username: </label><br /> - <input type="text" name="username" id="username" /><br /> - <label for="password">Password: </label><br /> - <input type="password" name="password" id="password" /><br /> - <input type="submit" value="Login" /> - </form> - </body> -</html> |