From 4a30205c7c2ca5dee773bc41f0cce448c98ad72f Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Thu, 11 May 2023 02:18:29 +0530 Subject: webui: flask dump --- webui/website/templates/404.html | 13 +++++++ webui/website/templates/base.html | 70 +++++++++++++++++++++++++++++++++++++ webui/website/templates/home.html | 19 ++++++++++ webui/website/templates/html.html | 44 +++++++++++++++++++++++ webui/website/templates/index2.html | 0 webui/website/templates/index3.html | 58 ++++++++++++++++++++++++++++++ webui/website/templates/live.html | 9 +++++ 7 files changed, 213 insertions(+) create mode 100644 webui/website/templates/404.html create mode 100644 webui/website/templates/base.html create mode 100644 webui/website/templates/home.html create mode 100644 webui/website/templates/html.html create mode 100644 webui/website/templates/index2.html create mode 100644 webui/website/templates/index3.html create mode 100644 webui/website/templates/live.html (limited to 'webui/website/templates') diff --git a/webui/website/templates/404.html b/webui/website/templates/404.html new file mode 100644 index 0000000..e207e9e --- /dev/null +++ b/webui/website/templates/404.html @@ -0,0 +1,13 @@ + + + + Page Not Found + + + +
+

404 - Page Not Found

+

This feature will soon be added!

+
+ + \ No newline at end of file diff --git a/webui/website/templates/base.html b/webui/website/templates/base.html new file mode 100644 index 0000000..ed37c38 --- /dev/null +++ b/webui/website/templates/base.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + {% block title %}Raspberry Pi Face Recognition{% endblock %} + + + +
+ Home + Live-feed + Login + + + + +
+ +
{% block content %} {% endblock %}
+
+ + + + + +
+ + + + + + + + diff --git a/webui/website/templates/home.html b/webui/website/templates/home.html new file mode 100644 index 0000000..a2c4191 --- /dev/null +++ b/webui/website/templates/home.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% block title %}Raspberry Pi Face Recognition{% endblock %} + +{% block content %} + + +
+
+

Raspberry Pi Face Recognition

+

This project aims to develop a portable and wireless Face Recognition System (FRS) using Raspberry Pi with a Camera Module attachment.

+ +
+ + + +{% endblock %} \ No newline at end of file diff --git a/webui/website/templates/html.html b/webui/website/templates/html.html new file mode 100644 index 0000000..8387ebb --- /dev/null +++ b/webui/website/templates/html.html @@ -0,0 +1,44 @@ + + + + + + + + Document + + + + + + \ No newline at end of file diff --git a/webui/website/templates/index2.html b/webui/website/templates/index2.html new file mode 100644 index 0000000..e69de29 diff --git a/webui/website/templates/index3.html b/webui/website/templates/index3.html new file mode 100644 index 0000000..1c33be9 --- /dev/null +++ b/webui/website/templates/index3.html @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + Raspberry Pi Face Recognition + + +
+
+

Raspberry Pi Face Recognition

+

This project aims to develop a portable and wireless Face Recognition System (FRS) using Raspberry Pi with a Camera Module attachment.

+ + + + +
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/webui/website/templates/live.html b/webui/website/templates/live.html new file mode 100644 index 0000000..5d7d62f --- /dev/null +++ b/webui/website/templates/live.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block title %}Live feed{% endblock %} +{% block content %} + +
+

Hi

+

+ +{% endblock %} \ No newline at end of file -- cgit v1.2.3