Good patterns for placeholders when not logged in?

EDIT: Added some illustrations.

Our app has a side panel to show key account information, e.g. outstanding balance, summary of pending orders, etc.

This works fine when the user is logged in. However: we're trying to figure out what to show if the user hasn't logged in yet. The account info is sensitive, so we need to authenticate before showing the data. But there's also non-sensitive data on the site (e.g. general info) that can be viewed without logging in.

Here's what it looks like conceptually:

enter image description here

(In reality there are more data fields than just balance & orders, but you get the idea).

So the question is: are there any good patterns on what to show logged out users? Fundamentally, the message is simple: "login to see your details". But how to support that visually? Again conceptually:

enter image description here

We're looking for inspiration/patterns on how to present the left hand panel.:

  1. Show "Your balance: ?" & "Order Summary ?", with a separate "login" button as above.
  2. Separate, clickable links for each missing value
  3. Something different?

Any suggestions/references appreciated.

Thanks.