From 5bb1aeab9b982863ccc71a4db970ebe923b9a096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20In=C3=A1cio?= Date: Sun, 2 Feb 2020 16:56:36 -0300 Subject: [PATCH] Upload templates --- templates/index.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 templates/index.html diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..9ba69be --- /dev/null +++ b/templates/index.html @@ -0,0 +1,43 @@ +{% extends "bootstrap/base.html" %} + +{% block title %} + {{ TITLE }} +{% endblock %} + +{% block styles %} + {{ super() }} + + + +{% endblock %} + +{% block content %} +

{{ TITLE }}

+ +
+ +
+ Camera preview: + + Run detection model: + +

+ Exposure: + + + Contrast: + + +
+
+{% endblock %} + +{% block scripts %} + + + + + + + {{ super() }} +{% endblock %}