From 4811a3eabc1e7afaf17b45f9dea541d987c45717 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 24 Dec 2024 13:56:06 -0500 Subject: Initial commit --- views/error.ejs | 17 +++++++++++++++++ views/index.ejs | 17 +++++++++++++++++ views/login.ejs | 26 ++++++++++++++++++++++++++ views/register.ejs | 31 +++++++++++++++++++++++++++++++ views/success.ejs | 18 ++++++++++++++++++ 5 files changed, 109 insertions(+) create mode 100644 views/error.ejs create mode 100644 views/index.ejs create mode 100644 views/login.ejs create mode 100644 views/register.ejs create mode 100644 views/success.ejs (limited to 'views') diff --git a/views/error.ejs b/views/error.ejs new file mode 100644 index 0000000..dc138e6 --- /dev/null +++ b/views/error.ejs @@ -0,0 +1,17 @@ + + + + + + + bnbSO + + +
+
+ logo +

Oh no! Something went wrong!

+

<%= error %>

+
+ + \ No newline at end of file diff --git a/views/index.ejs b/views/index.ejs new file mode 100644 index 0000000..d46a61a --- /dev/null +++ b/views/index.ejs @@ -0,0 +1,17 @@ + + + + + + + bnbSO + + +
+
+ logo +

You must be a member of the bits & Bytes Discord server to join bnbSO.

+ Login with Discord +
+ + \ No newline at end of file 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 @@ + + + + + + + bnbSO Login + + +
+
+ logo +

Login

+
+ + + + + +
+ Forgot Password + <% if (typeof error !== 'undefined') { %> +
<%= error %>
+ <% } %> + + \ No newline at end of file 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 @@ + + + + + + + bnbSO Register + + +
+
+ logo +

Welcome to bnbSO!

+

You will be sending the following information to register your bnbSO account

+

Please verify that the following information is correct. You can only change this once.

+
+ + + + + + + + + +
+ <% if (typeof error !== 'undefined') { %> +
<%= error %>
+ <% } %> + + \ No newline at end of file diff --git a/views/success.ejs b/views/success.ejs new file mode 100644 index 0000000..c967d24 --- /dev/null +++ b/views/success.ejs @@ -0,0 +1,18 @@ + + + + + + + bnbSO + + +
+
+ logo +

Created account successfully!

+

Check on your inbox for the confirmation code.

+ Home +
+ + \ No newline at end of file -- cgit v1.2.3