feel free to type whatever you want to type wherever you want to type it
you could also selectively display your message with a conditional in an action/filter of some sort if the user is not logged in.
something like
<?php
if ( !is_user_logged_in() ) {
echo 'special discounts for registered users';/*or whatever you want to say */
}
?>
there are endless ways to do this really