Skip to content

Commit

Permalink
More styling
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricvidal committed Dec 8, 2024
1 parent 1cd26f6 commit 4d36b58
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/workshop/lab_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4d36b58

Please sign in to comment.