diff options
| author | Andrew Lee <andrew@alee14.me> | 2024-12-24 13:56:06 -0500 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2024-12-24 13:56:06 -0500 |
| commit | 4811a3eabc1e7afaf17b45f9dea541d987c45717 (patch) | |
| tree | 7368782062805aa60dcbeeb3377c35076658decc /views/login.ejs | |
| download | freeso-discord-auth-4811a3eabc1e7afaf17b45f9dea541d987c45717.tar.gz freeso-discord-auth-4811a3eabc1e7afaf17b45f9dea541d987c45717.tar.bz2 freeso-discord-auth-4811a3eabc1e7afaf17b45f9dea541d987c45717.zip | |
Initial commit
Diffstat (limited to 'views/login.ejs')
| -rw-r--r-- | views/login.ejs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/views/login.ejs b/views/login.ejs new file mode 100644 index 0000000..a5a51ae --- /dev/null +++ b/views/login.ejs @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="/css/style.css"> + <title>bnbSO Login</title> +</head> +<body> + <div class="background"></div> + <div class="container"> + <img src="img/logo.png" alt="logo" width="200"> + <h1>Login</h1> + <form method="post" action="/login"> + <label for="username">Username:</label> + <input type="text" id="username" name="username"> + <label for="password">Password:</label> + <input type="password" id="password" name="password"> + <button type="submit">Login</button> + </form> + <a href="#">Forgot Password</a> + <% if (typeof error !== 'undefined') { %> + <div class="error"><%= error %></div> + <% } %> +</body> +</html>
\ No newline at end of file |
