MIGRATE: Implemented user color setting.

This commit is contained in:
Yapollon 2024-03-07 18:48:19 +01:00
parent 69b3c257d1
commit 1d8dd83086
3 changed files with 7 additions and 5 deletions

1
app.py
View File

@ -297,6 +297,7 @@ def habit_list_create():
@app.route('/profile')
@login_required
def profile():
print(current_user.name, current_user.email)
return render_template(
"profile.html",
name=current_user.name,

View File

@ -35,9 +35,9 @@ document.addEventListener("DOMContentLoaded", function() {
// Add event listener to edit button to open modal
editButton.addEventListener("click", function() {
editModal.show();
document.getElementById("newName").value = "{{ name }}";
document.getElementById("newEmail").value = "{{ email }}";
document.getElementById("password").value = "";
// document.getElementById("newName").value = "{{ name }}";
// document.getElementById("newEmail").value = "{{ email }}";
// document.getElementById("password").value = "";
});
// Add event listener to save changes button to submit form

View File

@ -102,4 +102,5 @@
<script src="../static/script/script-profile.js"></script>
{% endblock %}