html.pug 312 B

12345678910
  1. extends ../common/greetings
  2. block title
  3. | A new user registered
  4. block content
  5. - var mail = user.email || user.pendingEmail;
  6. p
  7. | User #[a(href=`${WEBSERVER.URL}/accounts/${user.username}`) #{user.username}] just registered.
  8. | You might want to contact them at #[a(href=`mailto:${mail}`) #{mail}].