changed home page and added topics on the website also added them in navbar only shows when signed in

This commit is contained in:
ralphi3
2026-06-22 11:40:05 +12:00
parent 53fc8b90e4
commit 2b328f0ae2
6 changed files with 40 additions and 1 deletions
+16
View File
@@ -78,6 +78,22 @@ def home():
def bivariate():
return render_template('bivariate.html')
@app.route('/simultaneousequations')
@login_required
def simultaneousequations():
return render_template('simultaneousequations.html')
@app.route('/calculus')
@login_required
def calculus():
return render_template('calculus.html')
@app.route('/triganometry')
@login_required
def triganometry():
return render_template('triganometry.html')
@app.route('/about')
def about():
return render_template('about.html')