1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-11-06 16:00:28 +01:00

Improved (imo) the use of English.

This commit is contained in:
Daan 2024-06-10 20:34:30 +02:00
parent 20530c000e
commit 701b45c286

View File

@ -873,7 +873,7 @@ def update_pwd():
config.set("Account", "password", hashlib.sha256(request.form['repnewpass'].encode()).hexdigest())
try:
set_dashboard_conf(config)
session['message'] = "Password update successfully!"
session['message'] = "Password updated successfully!"
session['message_status'] = "success"
config.clear()
return redirect(url_for("settings"))
@ -888,7 +888,7 @@ def update_pwd():
config.clear()
return redirect(url_for("settings"))
else:
session['message'] = "Your Password does not match."
session['message'] = "Your Passwords do not match."
session['message_status'] = "danger"
config.clear()
return redirect(url_for("settings"))