diff options
Diffstat (limited to 'webui/website/templates/base.html')
-rw-r--r-- | webui/website/templates/base.html | 70 |
1 files changed, 70 insertions, 0 deletions
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 @@ +<!DOCTYPE html> +<html lang="en-us"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta itemprop="name" content="Raspberry Pi Face Recognition"> + <meta itemprop="description" content="My Mini Project"> + <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32x32.png') }}"> + <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16x16.png') }}"> + <link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}"> + <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}"> + <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style2.css') }}"> + <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='navbar.css') }}"> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" crossorigin="anonymous"> + + <title>{% block title %}Raspberry Pi Face Recognition{% endblock %}</title> + </head> + <body> + + <div class="topnav" id="myTopnav"> + <a href="/" class="active">Home</a> + <a href="/live">Live-feed</a> + <a href="/login">Login</a> + <!-- <a href="/logout">Logout</a> --> + <a href="javascript:void(0);" class="icon" onclick="myFunction()"> + <i class="fa fa-bars"></i> + </a> + </div> + + <div class="container">{% block content %} {% endblock %}</div> + <div id="home-social"> + <a href="https://github.com/justsaumit/opencv-face-recognition" target="_blank" rel="noopener"> + <svg xmlns="http://www.w3.org/2000/svg" class="feather" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> + <path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path> + </svg> + </a> + </div> + <div id="home-footer"> + <p>© 2023 + <a>TEAM 3 - Meer Junaid, Bikram Kumar Poddar, Saumit Dinesan</a> + </p> + </div> + <script + src="https://code.jquery.com/jquery-3.2.1.slim.min.js" + integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" + crossorigin="anonymous" + ></script> + <script + src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" + integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" + crossorigin="anonymous" + ></script> + <script + src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" + integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" + crossorigin="anonymous" + ></script> + <script> + function myFunction() { + var x = document.getElementById("myTopnav"); + if (x.className === "topnav") { + x.className += " responsive"; + } else { + x.className = "topnav"; + } + } + </script> + <script src="{{ url_for('static', filename='main.js') }}"></script> + </body> +</html> |