From 02284958a1189ffcb10b34a4c3a02417f8136a4d Mon Sep 17 00:00:00 2001 From: Anson Bridges Date: Mon, 11 Aug 2025 22:24:05 -0700 Subject: Initialize git repo from local project files --- templates/editor.html | 151 ++++++++++++++++++++++++++++++++++++++++++++++++++ templates/home.html | 31 +++++++++++ templates/login.html | 41 ++++++++++++++ templates/signup.html | 48 ++++++++++++++++ 4 files changed, 271 insertions(+) create mode 100644 templates/editor.html create mode 100644 templates/home.html create mode 100644 templates/login.html create mode 100644 templates/signup.html (limited to 'templates') diff --git a/templates/editor.html b/templates/editor.html new file mode 100644 index 0000000..b6b7130 --- /dev/null +++ b/templates/editor.html @@ -0,0 +1,151 @@ + + + + Photocosm - Editor + + + + + + + + + + + + + + + + + +
+ + Share + Viewer + Home +
+ +
+
+
+
+ + + +
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+ + + + +
+
+
Not yet supported.
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + \ No newline at end of file diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..d54d2b7 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,31 @@ + + + + Photocosm - Home + + + +
+ Home + {% if current_user.is_authenticated %} + Logout, {{current_user.name}} + {% else %} + Log In + Sign Up + {% endif %} +
+ {% with messages = get_flashed_messages() %} + {% if messages %} +
+ {{ messages[0] }} +
+ {% endif %} + {% endwith %} +
+

Collections

+ {% for collection in collections %} + {{ collection['id'] }}
+ {% endfor %} +
+ + \ No newline at end of file diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..26a2329 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,41 @@ + + + + + Create Account + + +
+

Login

+
+ {% with messages = get_flashed_messages() %} + {% if messages %} +
+ {{ messages[0] }} +
+ {% endif %} + {% endwith %} +
+
+
+ +
+
+ +
+
+ +
+
+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/templates/signup.html b/templates/signup.html new file mode 100644 index 0000000..dffeb62 --- /dev/null +++ b/templates/signup.html @@ -0,0 +1,48 @@ + + + + + Create Account + + +
+

Create an account

+
+ {% with messages = get_flashed_messages() %} + {% if messages %} +
+ {{ messages[0] }}. Go to login page. +
+ {% endif %} + {% endwith %} +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + +
+
+
+ + \ No newline at end of file -- cgit v1.2.3