SAML; Dashboard
This commit is contained in:
7
app/views/auth/mfa/disable.pug
Normal file
7
app/views/auth/mfa/disable.pug
Normal file
@@ -0,0 +1,7 @@
|
||||
extends ../../theme/public/base
|
||||
|
||||
block append style
|
||||
link(rel='stylesheet' href='/style-asset/form.css')
|
||||
|
||||
block vue
|
||||
coreid-mfa-disable-page
|
||||
10
app/views/auth/password/reset.pug
Normal file
10
app/views/auth/password/reset.pug
Normal file
@@ -0,0 +1,10 @@
|
||||
extends ../../theme/public/base
|
||||
|
||||
block append style
|
||||
link(rel='stylesheet' href='/style-asset/form.css')
|
||||
|
||||
block append script
|
||||
script(src='/assets/lib/zxcvbn/zxcvbn.js')
|
||||
|
||||
block vue
|
||||
coreid-password-reset-page(v-bind:app_name="app_name")
|
||||
12
app/views/auth/trust/grant.pug
Normal file
12
app/views/auth/trust/grant.pug
Normal file
@@ -0,0 +1,12 @@
|
||||
extends ../../theme/public/base
|
||||
|
||||
block append style
|
||||
link(rel='stylesheet' href='/style-asset/form.css')
|
||||
|
||||
block vue
|
||||
coreid-login-form(
|
||||
:app_name="app_name"
|
||||
:login_message="login_message"
|
||||
:no_session="true"
|
||||
:additional_params="{grant_code: grant_code}"
|
||||
)
|
||||
7
app/views/cobalt/listing.pug
Normal file
7
app/views/cobalt/listing.pug
Normal file
@@ -0,0 +1,7 @@
|
||||
extends ../theme/dash/base
|
||||
|
||||
block content
|
||||
.cobalt-container
|
||||
.row.pad-top
|
||||
.col-12
|
||||
cobalt-listing(:definition="definition")
|
||||
7
app/views/dash/profile/main.pug
Normal file
7
app/views/dash/profile/main.pug
Normal file
@@ -0,0 +1,7 @@
|
||||
extends ../../theme/dash/base
|
||||
|
||||
block content
|
||||
.profile-container
|
||||
.row.pad-top
|
||||
.col-12.offset-0.col-md-8.offset-md-2.col-xl-6.offset-xl-3
|
||||
coreid-profile-edit
|
||||
33
app/views/theme/dash/base.pug
Normal file
33
app/views/theme/dash/base.pug
Normal file
@@ -0,0 +1,33 @@
|
||||
extends ../base
|
||||
|
||||
block append style
|
||||
link(rel='stylesheet' href='/style-asset/dashboard.css')
|
||||
link(rel='stylesheet' href='/assets/lib/fa/css/all.css')
|
||||
|
||||
block append script
|
||||
script(type='module').
|
||||
import { session } from '/assets/app/service/Session.service.js'
|
||||
session.init(!{JSON.stringify(vue_session) || '\{\}'})
|
||||
window.session = session
|
||||
|
||||
import { dash_components } from '/assets/app/dash-components.js'
|
||||
import VuES6Loader from '/assets/lib/vues6/vues6.js'
|
||||
|
||||
const loader = new VuES6Loader(dash_components)
|
||||
loader.load()
|
||||
|
||||
const app = new Vue({
|
||||
el: '#wrapper',
|
||||
data: !{JSON.stringify(vue_state) || '\{\}'}
|
||||
})
|
||||
|
||||
block app
|
||||
.d-flex#wrapper
|
||||
coreid-sidebar#sidebar-wrapper(v-bind:app_name="app_name")
|
||||
|
||||
#page-content-wrapper
|
||||
coreid-navbar
|
||||
coreid-message-container
|
||||
|
||||
.container-fluid
|
||||
block content
|
||||
@@ -2,8 +2,15 @@ extends ../base
|
||||
|
||||
block append style
|
||||
link(rel='stylesheet' href='/style-asset/public.css')
|
||||
link(rel='stylesheet' href='/assets/lib/fa/css/all.css')
|
||||
|
||||
block append script
|
||||
if vue_session
|
||||
script(type='module').
|
||||
import { session } from '/assets/app/service/Session.service.js'
|
||||
session.init(!{JSON.stringify(vue_session) || '\{\}'})
|
||||
window.session = session
|
||||
|
||||
script(type='module').
|
||||
import { components } from '/assets/app/components.js'
|
||||
import VuES6Loader from '/assets/lib/vues6/vues6.js'
|
||||
|
||||
@@ -1,7 +1 @@
|
||||
extends ./theme/public/base
|
||||
|
||||
block append style
|
||||
link(rel='stylesheet' href='/style-asset/form.css')
|
||||
|
||||
block vue
|
||||
coreid-auth-page(v-bind:app_name="app_name" v-bind:message="message" v-bind:actions="actions")
|
||||
extends ./theme/dash/base
|
||||
|
||||
Reference in New Issue
Block a user