more cleaning
This commit is contained in:
@@ -20,4 +20,4 @@ not done
|
||||
information,
|
||||
quizzes,
|
||||
formulas,
|
||||
good looking pages,
|
||||
good looking pages
|
||||
@@ -52,7 +52,6 @@ def handle_submission():
|
||||
|
||||
|
||||
@app.route('/users')
|
||||
@login_required
|
||||
def view_users():
|
||||
all_users = User.query.all()
|
||||
|
||||
@@ -65,7 +64,7 @@ def view_users():
|
||||
html_output += "</table>"
|
||||
|
||||
if not all_users:
|
||||
return "<h3>No accounts found in the database yet.</h3>"
|
||||
return "<h3>emptyyyyy daaatabase</h3>"
|
||||
|
||||
return html_output
|
||||
|
||||
@@ -75,6 +74,7 @@ def home():
|
||||
return render_template('index.html')
|
||||
|
||||
@app.route('/bivariate')
|
||||
@login_required
|
||||
def bivariate():
|
||||
return render_template('bivariate.html')
|
||||
|
||||
|
||||
Binary file not shown.
+3
-1
@@ -1,3 +1,4 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
@@ -20,4 +21,5 @@
|
||||
<main>
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,14 +1,5 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% 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>
|
||||
<h1>Information on bivariate data Analysis</h1>
|
||||
|
||||
@@ -31,8 +22,4 @@
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
<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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user