From 6ae21577802462f38d98dd0e5415166008b1b13f Mon Sep 17 00:00:00 2001 From: Jeffrey Armstrong Date: Wed, 27 Apr 2022 12:48:26 -0400 Subject: Started work on user-facing user stuff for web interface. --- captain/templates/forgot.html | 11 +++++++++++ captain/templates/index.html | 3 ++- captain/templates/login.html | 20 ++++++++++++++++++++ captain/templates/profile.html | 6 ++++++ 4 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 captain/templates/forgot.html create mode 100644 captain/templates/login.html create mode 100644 captain/templates/profile.html (limited to 'captain/templates') diff --git a/captain/templates/forgot.html b/captain/templates/forgot.html new file mode 100644 index 0000000..595cf9e --- /dev/null +++ b/captain/templates/forgot.html @@ -0,0 +1,11 @@ +{% extends index.html as contents %} + +

Forgot Your Password?

+ +

Please enter the email address associated with the account below:

+ +
+ + + +
diff --git a/captain/templates/index.html b/captain/templates/index.html index fc4de13..9f7b0ec 100644 --- a/captain/templates/index.html +++ b/captain/templates/index.html @@ -18,6 +18,7 @@
  • Instructions
  • Groups
  • About
  • +
  • {{ user_link_text }}
  • {{ title }} - I'm Levitating!

    @@ -30,7 +31,7 @@
    -

    Copyright © 2021 Approximatrix, LLC

    +

    Copyright © 2022 Approximatrix, LLC

    diff --git a/captain/templates/login.html b/captain/templates/login.html new file mode 100644 index 0000000..ab06b26 --- /dev/null +++ b/captain/templates/login.html @@ -0,0 +1,20 @@ +{% extends index.html as contents %} + +

    User Login for the {{ project }} Project

    + +
    +
    + Existing Users +

    + +

    +

    + +

    + +
    +
    + +

    {{ login_message }}

    + +

    Forgot Password?

    diff --git a/captain/templates/profile.html b/captain/templates/profile.html new file mode 100644 index 0000000..c0738c9 --- /dev/null +++ b/captain/templates/profile.html @@ -0,0 +1,6 @@ +{% extends index.html as contents %} + +

    User Profile - {{ username }}

    + +

    Logout

    + -- cgit v1.2.3