aboutsummaryrefslogtreecommitdiff
path: root/src/filters/auth/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/filters/auth/login.html')
-rw-r--r--src/filters/auth/login.html35
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>