From ec7585b60e58bb274e6a424fdf68fb9cda5c1582 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 24 Mar 2025 01:47:11 +0000 Subject: [PATCH] Upload files to "app/templates" --- app/templates/account.html | 273 ++++++++++++++++++++++++++++++++++ app/templates/base.html | 27 ++++ app/templates/directory.html | 34 +++++ app/templates/env_status.html | 44 ++++++ app/templates/index.html | 44 ++++++ 5 files changed, 422 insertions(+) create mode 100644 app/templates/account.html create mode 100644 app/templates/base.html create mode 100644 app/templates/directory.html create mode 100644 app/templates/env_status.html create mode 100644 app/templates/index.html diff --git a/app/templates/account.html b/app/templates/account.html new file mode 100644 index 0000000..4294d16 --- /dev/null +++ b/app/templates/account.html @@ -0,0 +1,273 @@ +{% extends "base.html" %} + +{% block content %} + + + + + +
+
+
+
+
+

account_circle{{ current_user.name }}

+
+
+
+
+
+
+
    +
  • +
    account_circleContact Info
    +
    +
      +
    • + phone_android + Phone +
      + +
      + + + + edit +
    • +
    • + email + Email +

      {{ current_user.email }}

      +
    • +
    +
    +
  • +
  • +
    lockCredentials
    +
    +
      +
    • + vpn_key + SSH Public Keys + {% for pub_key in current_user.ssh_pub_keys %} +
      +
      +
      + + +
      +
      + +
      +
      + {% endfor %} +
      +

      Add public key add

      +
      +
    • +
    • + password + Change Password +
    • +
    +
    +
  • +
+
+ +
+
+ +{% endblock %} \ No newline at end of file diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..05972e4 --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,27 @@ +{% block head %} + Quarter Homes Internal +{% endblock %} + + + + + + + + + + + +{% block flash_messages %} + {% include "includes/flash_messages.html" %} +{% endblock %} + +{% block body_content %} + {% include "includes/navbar.html" %} + {% block content %} + {% endblock %} +{% endblock %} \ No newline at end of file diff --git a/app/templates/directory.html b/app/templates/directory.html new file mode 100644 index 0000000..45ed7b6 --- /dev/null +++ b/app/templates/directory.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} + +{% block content %} +
+
+
+

Directory

+
+
+
    + {% for emp in users %} +
  • +
    account_circle{{ emp.full_name }}
    +
    +
      +
    • + phone_android + Phone +

      {{ emp.phone_num }}

      +
    • +
    • + email + Email +

      {{ emp.email }}

      +
    • +
    +
    +
  • + {% endfor %} +
+
+
+
+{% endblock %} \ No newline at end of file diff --git a/app/templates/env_status.html b/app/templates/env_status.html new file mode 100644 index 0000000..6d11c5f --- /dev/null +++ b/app/templates/env_status.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} + +{% block content %} + {% for env in envs %} +
+
+ +
+
+ {% endfor %} + + +{% endblock %} \ No newline at end of file diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..242b02d --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} + +{% block content %} +
+
+
+
+ link Useful Links + +
+
+
+
+ article Documentation + +
+
+
+
+
+
+ Environment Status +
+
    +
  • Environment 1 check_circle_outline
  • +
  • Environment 2 error
  • +
+
+
+
+
+
+{% endblock %} \ No newline at end of file