Compare commits

..

No commits in common. "8094bd78654334a08b1ff7665ea59cea9ddf1a99" and "e86c7ac9410ecdca827ff3caf44059dcb62be7f8" have entirely different histories.

3 changed files with 5 additions and 7 deletions

1
app.py
View File

@ -297,7 +297,6 @@ 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,5 +102,4 @@
<script src="../static/script/script-profile.js"></script>
{% endblock %}