Admin Panel Revamp
This commit is contained in:
parent
c99c897561
commit
abb50cf152
11 changed files with 251 additions and 39 deletions
53
views/admin-user-edit.pug
Normal file
53
views/admin-user-edit.pug
Normal file
|
@ -0,0 +1,53 @@
|
|||
extends layout.pug
|
||||
|
||||
block title
|
||||
h1(style="margin-bottom: 0;")
|
||||
a(href='..') <
|
||||
| #{config.siteTitle}
|
||||
p Editing user "#{user._id}"
|
||||
|
||||
block content
|
||||
.columns
|
||||
.column
|
||||
if user.signupToken
|
||||
- const link = `${_CC.config.base}confirm-account/${user.signupToken}`
|
||||
.box(style='overflow: hidden;')
|
||||
.columns(style='margin-bottom: 0;')
|
||||
.column.is-narrow(style='padding-bottom: 0;')
|
||||
h2 Confirmation Link
|
||||
.column(style='padding-bottom: 0;')
|
||||
p
|
||||
span This account hasn't been confirmed.
|
||||
br
|
||||
if user.expiry > new Date().getTime()
|
||||
span= `The following link expires ${_CC.require('moment')(user.expiry).fromNow()}`
|
||||
else
|
||||
span.has-text-weight-bold(style='color: red;')= `The following link expired ${_CC.require('moment')(user.expiry).fromNow()}`
|
||||
h3(style='margin-bottom: 0; margin-top: 0;')
|
||||
.level
|
||||
.level-left
|
||||
.level-item
|
||||
form(method='POST', action=`${_CC.config.base}admin-settings/edit/refresh-signup-token/${user._id}`)
|
||||
input.button.is-rounded(type='submit', value='Generate New Link')
|
||||
.level-item
|
||||
a(href=link, style='font-family: monospaced; word-break: break-all;')= link
|
||||
h2 Change Name
|
||||
form(action=`${_CC.config.base}admin-settings/edit/rename/${user._id}`, method='POST')
|
||||
.field
|
||||
label.label Username
|
||||
.control.has-icons-left
|
||||
input.input(type='text', name='newUsername', placeholder=user._id, value=user._id)
|
||||
span.icon.is-small.is-left
|
||||
i.fas.fa-user
|
||||
.field
|
||||
.control
|
||||
input.button.is-primary(type='submit' value='Change Username')
|
||||
.column.is-narrow
|
||||
h2 Irreversible Deletion
|
||||
form(method='POST', action=`${_CC.config.base}admin-settings/edit/remove/${user._id}`)
|
||||
.field
|
||||
.control
|
||||
if user.admin
|
||||
input.button.is-danger(disabled, type='submit' value=`User is admin`)
|
||||
else
|
||||
input.button.is-danger(type='submit' value=`Remove user ${user._id}`)
|
|
@ -4,12 +4,11 @@ block content
|
|||
h2 Users
|
||||
each user in users
|
||||
span.is-size-6.inline= user.id
|
||||
if !user.doc.admin
|
||||
a(href=`${_CC.config.base}admin-settings/remove/${user.id}`)
|
||||
span.is-size-7.icon.has-text-danger
|
||||
i.fas.fa-times
|
||||
span.is-sr-only
|
||||
Remove
|
||||
a(href=`${_CC.config.base}admin-settings/edit/${user.id}`)
|
||||
span.is-size-7.icon.has-text-info
|
||||
i.fas.fa-edit
|
||||
span.is-sr-only
|
||||
| Edit
|
||||
br
|
||||
h3 Add user
|
||||
form(action=`${_CC.config.base}admin-settings/add`, method='POST')
|
||||
|
@ -19,12 +18,9 @@ block content
|
|||
input.input(type='text', name='newUserUsername', placeholder='john')
|
||||
span.icon.is-small.is-left
|
||||
i.fas.fa-user
|
||||
.field
|
||||
label.label Password
|
||||
.control.has-icons-left
|
||||
input.input(type='password', name='newUserPassword', placeholder='pa$$word!')
|
||||
span.icon.is-small.is-left
|
||||
i.fas.fa-lock
|
||||
.field
|
||||
.control
|
||||
input.button.is-primary(type='submit' value='Add User')
|
||||
input.button.is-primary(type='submit' value='Add User')
|
||||
h3 Version Info
|
||||
p Christmas Community: v#{_CC.require('./package.json').version}
|
||||
p Node: #{process.version}
|
34
views/confirm-account.pug
Normal file
34
views/confirm-account.pug
Normal file
|
@ -0,0 +1,34 @@
|
|||
extends layout.pug
|
||||
|
||||
mixin icon(c, text)
|
||||
.columns.is-vcentered.is-mobile
|
||||
.column.is-narrow
|
||||
span.icon.is-large
|
||||
i.fa-3x(class=c)
|
||||
.column #{text}
|
||||
|
||||
block title
|
||||
if doc
|
||||
h1 #{config.siteTitle} | Confirm Account
|
||||
else
|
||||
h1 #{config.siteTitle} | Confirmation Link Invalid
|
||||
|
||||
block content
|
||||
if doc
|
||||
if doc.expiry > new Date().getTime()
|
||||
+icon('fas fa-smile-beam', `Hello ${doc._id}! Please set your password here.`)
|
||||
form(method='POST')
|
||||
.field
|
||||
label.label Password
|
||||
.control.has-icons-left
|
||||
input.input(type='password', name='password', placeholder='pa$$word!')
|
||||
span.icon.is-small.is-left
|
||||
i.fas.fa-lock
|
||||
.field
|
||||
.control
|
||||
input.button.is-primary(type='submit' value=`Join ${_CC.config.siteTitle}`)
|
||||
else
|
||||
+icon('fas fa-frown-open', 'Your confirmation link has expired. Please ask for a new one.')
|
||||
else
|
||||
+icon('fas fa-frown-open', "This confirmation link isn't valid, perhaps the account was deleted or some characters at the end got cut off?")
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
extends layout.pug
|
||||
|
||||
block content
|
||||
form(method='POST')
|
||||
.field
|
||||
.control
|
||||
input.button.is-danger(type='submit' value=`Remove user ${userToRemove}`)
|
Loading…
Add table
Add a link
Reference in a new issue