From 4d863fb79661209a6df5c2f44d195b535a45389e Mon Sep 17 00:00:00 2001 From: ywang289 <56518323+ywang289@users.noreply.github.com> Date: Thu, 5 May 2022 20:04:29 -0400 Subject: [PATCH] add profile and change password frontend --- templates/templates/SignUp.html | 126 +++++++++++++++++++++ templates/templates/homepage.html | 176 ++++++++++++++++++++++++++++++ templates/templates/index.html | 145 ++++++++++++++++++++++++ templates/templates/profile.html | 96 ++++++++++++++++ templates/templates/reset.html | 70 ++++++++++++ 5 files changed, 613 insertions(+) create mode 100644 templates/templates/SignUp.html create mode 100644 templates/templates/homepage.html create mode 100644 templates/templates/index.html create mode 100644 templates/templates/profile.html create mode 100644 templates/templates/reset.html diff --git a/templates/templates/SignUp.html b/templates/templates/SignUp.html new file mode 100644 index 0000000..930b367 --- /dev/null +++ b/templates/templates/SignUp.html @@ -0,0 +1,126 @@ + + + + UBchating + + + + + + + + + + +
+

Welcome to UB Chating!

+ +
+
+
+
+

User Sign Up

+
+ + + + +

+ +

+ +

+

Sign In

+
+ +
+
+
+ + + + + + + + diff --git a/templates/templates/homepage.html b/templates/templates/homepage.html new file mode 100644 index 0000000..e5e8b77 --- /dev/null +++ b/templates/templates/homepage.html @@ -0,0 +1,176 @@ + + + + UB chatting + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Welcome back ,{{username}}!

+
+
+ +
+
+
+ user_image {{username}} +
+ +
+
+
+
+
+
+

{{content_begin_here}}


+ {{thumbersLst}} +
+
+
+ +
+ + +

1. upload Image

+
+ + + +
+

Styling Flex Container

+ +

Designing Flex Items

+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/templates/index.html b/templates/templates/index.html new file mode 100644 index 0000000..db0456d --- /dev/null +++ b/templates/templates/index.html @@ -0,0 +1,145 @@ + + + + UB Chating + + + + + + + + + + + + + + + +
+

Welcome to UB Chating!

+ +
+ +
+
+
+

User Sign In Here~

+
+
+ + + + +

+ + + +

+ + + + +



+

If you don't have an account...

+

+

Sign up

+ +
+ + +
+
+
+ + + + + + + + diff --git a/templates/templates/profile.html b/templates/templates/profile.html new file mode 100644 index 0000000..b8b2bb1 --- /dev/null +++ b/templates/templates/profile.html @@ -0,0 +1,96 @@ + + + + + + Project Name + + + + +

Project Name

+ + {% if user %} +
+ Home + About + Register + sign in + Logout +
+
+
This is User's Profile Page
+
+

Welcome {{user['username']}}. Change Password

+
+
+
+ + +
+
+ +
+ +
+ +
+ +
+ + +
+ + +
+
+
+
+ +
+
+
+
+ + + +
+
+
+ +{% endif %} + + + + + \ No newline at end of file diff --git a/templates/templates/reset.html b/templates/templates/reset.html new file mode 100644 index 0000000..eb33995 --- /dev/null +++ b/templates/templates/reset.html @@ -0,0 +1,70 @@ + + + + + + Project Name + + + + +

Project Name

+ +
+ Home + About + Register + sign in + Logout +
+
+
This is change password Page, get back into your account
+
+
+
+ +
+ +
+ + +

+ + +
+ +
+
+

Cancel

+
+ + \ No newline at end of file