From 61c3b67e018771c9e836f820d5ab00a697841c44 Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 5 Jun 2021 19:58:57 +0100 Subject: [PATCH] Highlighted files unused in eventual final project --- app.py | 2 ++ static/css/style.css | 1 + static/js/main.js | 1 + templates/chatbot.html | 1 + templates/index.html | 1 + templates/page.html | 1 + templates/test.html | 0 7 files changed, 7 insertions(+) delete mode 100644 templates/test.html diff --git a/app.py b/app.py index 7e36ec1..45e1e7d 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,5 @@ +# UNUSED IN FINAL PROJECT! + from flask import Flask, render_template, jsonify, request # import bot from chatbot.main import init_chatbot, evaluate_sentence diff --git a/static/css/style.css b/static/css/style.css index e8f24f9..35f7573 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,3 +1,4 @@ +/* UNUSED IN FINAL PROJECT! */ body { background-color: red; } diff --git a/static/js/main.js b/static/js/main.js index 8bb6377..1f236e0 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -1,3 +1,4 @@ +// UNUSED IN FINAL PROJECT 'use strict'; const sendBtnClickListener = async () => { diff --git a/templates/chatbot.html b/templates/chatbot.html index 5095df4..2fdffee 100644 --- a/templates/chatbot.html +++ b/templates/chatbot.html @@ -1,3 +1,4 @@ + diff --git a/templates/index.html b/templates/index.html index 59fb78e..0b52714 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,3 +1,4 @@ + diff --git a/templates/page.html b/templates/page.html index 2963395..884d90e 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,3 +1,4 @@ +

Hello {{ name }}!

diff --git a/templates/test.html b/templates/test.html deleted file mode 100644 index e69de29..0000000