more cleaning

This commit is contained in:
ralphi3
2026-06-19 14:46:52 +12:00
parent 9cbb2886e8
commit 4d6e117ef4
6 changed files with 7 additions and 18 deletions
+1 -1
View File
@@ -20,4 +20,4 @@ not done
information, information,
quizzes, quizzes,
formulas, formulas,
good looking pages, good looking pages
+2 -2
View File
@@ -52,7 +52,6 @@ def handle_submission():
@app.route('/users') @app.route('/users')
@login_required
def view_users(): def view_users():
all_users = User.query.all() all_users = User.query.all()
@@ -65,7 +64,7 @@ def view_users():
html_output += "</table>" html_output += "</table>"
if not all_users: if not all_users:
return "<h3>No accounts found in the database yet.</h3>" return "<h3>emptyyyyy daaatabase</h3>"
return html_output return html_output
@@ -75,6 +74,7 @@ def home():
return render_template('index.html') return render_template('index.html')
@app.route('/bivariate') @app.route('/bivariate')
@login_required
def bivariate(): def bivariate():
return render_template('bivariate.html') return render_template('bivariate.html')
Binary file not shown.
+3 -1
View File
@@ -1,3 +1,4 @@
<html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -20,4 +21,5 @@
<main> <main>
{% block content %}{% endblock %} {% block content %}{% endblock %}
</main> </main>
</body> </body>
</html>
-13
View File
@@ -1,14 +1,5 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block content %} {% block content %}
<div>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bivariate Data Analysis</title>
<link rel="stylesheet" href="style.css">
</head>
<body> <body>
<h1>Information on bivariate data Analysis</h1> <h1>Information on bivariate data Analysis</h1>
@@ -31,8 +22,4 @@
</div> </div>
</body> </body>
</html>
</div>
{% endblock %} {% endblock %}
+1 -1
View File
@@ -3,7 +3,7 @@
<div> <div>
<h1>homepage for math website wow</h1> <h1>Math website</h1>
<h2>If you want to access the math topics on this website you must be signed into a account</h2> <h2>If you want to access the math topics on this website you must be signed into a account</h2>