diff options
-rwxr-xr-x | index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/index.js b/index.js index 576a5a8..3ed4996 100755 --- a/index.js +++ b/index.js @@ -28,7 +28,8 @@ const page = async (request, response, text) => { <body> <header> ${cookies.username ? fixWS` - <p>You are logged in as ${templates.user(cookies.username)}. (<a href="/logout">Log out.</a>) You have ${'' + notificationCount} unread <a href="/notifications">${pluralize('notification', notificationCount)}</a>.</p>` + <p>You are logged in as ${templates.user(cookies.username)}. (<a href="/logout">Log out.</a>) + You have ${'' + notificationCount} unread <a href="/notifications">${pluralize('notification', notificationCount)}</a>.</p>` : fixWS` <p>You are not logged in. <a href="/login">Log in.</a></p> `} |