SAML; Dashboard

This commit is contained in:
garrettmills
2020-05-03 20:16:54 -05:00
parent e3ecfb0d37
commit c389e151b5
1778 changed files with 148410 additions and 82 deletions

View 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

View 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")

View 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}"
)

View File

@@ -0,0 +1,7 @@
extends ../theme/dash/base
block content
.cobalt-container
.row.pad-top
.col-12
cobalt-listing(:definition="definition")

View 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

View 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

View File

@@ -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'

View File

@@ -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