+
+ {% if app.user and app.user.isSignedUp %}
+ Happy to see you, {{ renderUsername(app.user.username) }}!
+ {% else %}
+ Welcome, {{ app.user ? renderUsername(app.user.username) : 'Guest' }}!
+ {% endif %}
+
+
+ Pick a game to start playing.
+
+ {% if not app.user or not app.user.isSignedUp %}
+
+ You’re currently playing as a guest.
+ Log in
+ or
+ sign up for free
+ to keep your game history and statistics.
+
+ {% endif %}
+