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/register.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/register.ejs')
| -rw-r--r-- | views/register.ejs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/views/register.ejs b/views/register.ejs new file mode 100644 index 0000000..fcff088 --- /dev/null +++ b/views/register.ejs @@ -0,0 +1,31 @@ +<!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 Register</title> +</head> +<body> + <div class="background"></div> + <div class="container"> + <img src="img/logo.png" alt="logo" width="200"> + <h1>Welcome to bnbSO!</h1> + <p>You will be sending the following information to register your bnbSO account</p> + <p>Please verify that the following information is correct. You can only change this <b>once</b>.</p> + <form method="post" action="/register"> + <label for="username">Username:</label> + <input type="text" id="username" name="username" value="<%= username %>"> + <label for="email">Email:</label> + <input type="email" id="email" name="email" value="<%= email %>"> + <label for="password">Password:</label> + <input type="password" id="password" name="password"> + <label for="password2">Confirm Password:</label> + <input type="password" id="password2" name="password2"> + <button type="submit">Register</button> + </form> + <% if (typeof error !== 'undefined') { %> + <div class="error"><%= error %></div> + <% } %> +</body> +</html>
\ No newline at end of file |
