jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.6 KiB

extends ../layout.pug
block head
title Account
block content
.board-header
h1.board-title Welcome, #{user.username}
h4.board-description Auth level: #{user.authLevel}
br
hr(size=1)
h4.no-m-p General:
ul
if user.authLevel <= 1
li: a(href='/globalmanage/recent.html') Global management
li: a(href='/create.html') Create a board
li: a(href='/changepassword.html') Change password
li: a(href='/logout') Log out
hr(size=1)
h4.no-m-p Boards you own:
if user.ownedBoards && user.ownedBoards.length > 0
ul
for b in user.ownedBoards
li
a(href=`/${b}/index.html`) /#{b}/
| -
a(href=`/${b}/manage/index.html`) Mod Index
| ,
a(href=`/${b}/manage/catalog.html`) Mod Catalog
| ,
a(href=`/${b}/manage/recent.html`) Recent
| ,
a(href=`/${b}/manage/reports.html`) Reports
| ,
a(href=`/${b}/manage/bans.html`) Bans
| ,
a(href=`/${b}/manage/logs.html`) Logs
| ,
a(href=`/${b}/manage/settings.html`) Settings
| ,
a(href=`/${b}/manage/banners.html`) Banners
else
p None
hr(size=1)
h4.no-m-p Boards you moderate:
if user.modBoards && user.modBoards.length > 0
ul
for b in user.modBoards
li
a(href=`/${b}/index.html`) /#{b}/
| -
a(href=`/${b}/manage/index.html`) Mod Index
| ,
a(href=`/${b}/manage/catalog.html`) Mod Catalog
| ,
a(href=`/${b}/manage/recent.html`) Recent
| ,
a(href=`/${b}/manage/reports.html`) Reports
| ,
a(href=`/${b}/manage/bans.html`) Bans
| ,
a(href=`/${b}/manage/logs.html`) Logs
else
p None