From 19fe1d8328c9f2bb59240cb080e47f834067766a Mon Sep 17 00:00:00 2001 From: NguyenND Date: Mon, 27 Apr 2026 14:47:46 -0400 Subject: [PATCH] 04/27 Updated customer invitation allow customer to create username & password 2 --- app/routes/customers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/customers.py b/app/routes/customers.py index 72605e1..b3b3b1a 100644 --- a/app/routes/customers.py +++ b/app/routes/customers.py @@ -161,7 +161,7 @@ def create(): flash( f'Customer account created for {full_name}. ' - f'They can now log in with username '{username}'.', + f'They can now log in with username "{username}".', 'success' ) return redirect(url_for('customers.manage', customer_id=user.id))