From 4d36b580ab24ea9ec45fb0916c1b6d12fde94219 Mon Sep 17 00:00:00 2001 From: Cedric Vidal Date: Mon, 9 Dec 2024 10:06:22 +1100 Subject: [PATCH] More styling --- docs/workshop/lab_setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/workshop/lab_setup.py b/docs/workshop/lab_setup.py index 7dcf0985..7c83ab3e 100755 --- a/docs/workshop/lab_setup.py +++ b/docs/workshop/lab_setup.py @@ -101,7 +101,8 @@ def azd_login(*, username: str = None, password: str = None, tenant: str = None, # Display credentials if provided if username and password: - click.echo(f"{style('When asked for Azure credentials, enter the following:', underline=True)}") + opts = {'underline': True} + click.echo(f"{style('When asked to ', **opts)}{style('Pick an account', **opts, bold=True)}{style(', hit the ', **opts)}{style('Use another account', **opts, bold=True)}{style(' button and enter the following:', **opts)}") click.echo(f"Username: {style(username, fg='blue', bold=True)}") click.echo(f"Password: {style(password, fg='blue', bold=True)}") click.echo()