From f7cde0cf1eaad5a03553470a3259d64aec94d70b Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Thu, 18 Aug 2022 01:54:36 +0600 Subject: i forgor to commit --- static/ejs/pages/home.ejs | 81 ++++++++++++++++++++++++++++++++++++++++ static/ejs/pages/me.ejs | 88 ++++++++++++++++++++++++++++++++++++++++++++ static/ejs/partials/bar.ejs | 7 ++++ static/ejs/partials/meta.ejs | 1 + 4 files changed, 177 insertions(+) create mode 100644 static/ejs/pages/home.ejs create mode 100644 static/ejs/pages/me.ejs create mode 100644 static/ejs/partials/bar.ejs create mode 100644 static/ejs/partials/meta.ejs (limited to 'static/ejs') diff --git a/static/ejs/pages/home.ejs b/static/ejs/pages/home.ejs new file mode 100644 index 0000000..340c563 --- /dev/null +++ b/static/ejs/pages/home.ejs @@ -0,0 +1,81 @@ + + + + + + Picbin + <%- include("../partials/meta") %> + + + + +
+
+
+ +
+

PictureBin

+
+
+
+
+
+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/static/ejs/pages/me.ejs b/static/ejs/pages/me.ejs new file mode 100644 index 0000000..0c69ef5 --- /dev/null +++ b/static/ejs/pages/me.ejs @@ -0,0 +1,88 @@ + + + + + + <%= user.name %> - Image Hoster + <%- include("../partials/meta") %> + + +
+
+
+ Go back... +
+
+
+
+ +
+
+

<%= user.name%> (<%= user.alias_id %>)

+

<%= user.desc %>

+
+
+
+ +
+
+
+

+ Authentication Key +

+

An authentication key is required if you want to upload images under your account and be able to delete them.

+
+ +
+
+
+

+ Files (<%= images.length %>) +

+
+ <% images.forEach((image, index) => { %> +
+
+
+

<%= index + 1 %>

+
+
+ +
+
+ +

<%= image.timestamp %>

+
+
+ View +
+
+
+ <%})%> +
+
+
+
+ + + \ No newline at end of file diff --git a/static/ejs/partials/bar.ejs b/static/ejs/partials/bar.ejs new file mode 100644 index 0000000..550d9e2 --- /dev/null +++ b/static/ejs/partials/bar.ejs @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/static/ejs/partials/meta.ejs b/static/ejs/partials/meta.ejs new file mode 100644 index 0000000..38aa1df --- /dev/null +++ b/static/ejs/partials/meta.ejs @@ -0,0 +1 @@ + \ No newline at end of file -- cgit v1.2.3