import * as plugins from '../plugins.js'; import { customElement, DeesElement, property, html, cssManager, unsafeCSS, css, type TemplateResult, } from '@design.estate/dees-element'; @customElement('idp-welcome') export class IdpWelcome extends DeesElement { @property() public someProperty = 'someProperty'; constructor() { super(); } public static styles = [ cssManager.defaultStyles, css` :host { display: block; height: 100px; color: #fff; font-family: 'Geist Sans'; } :host([hidden]) { font-family: 'Cal Sans'; display: none; } h1 { text-align: center; letter-spacing:0.0125em; } .textbox { margin: 24px auto; width: 500px; background: #111111; border-radius: 8px; padding: 24px; } .textbox dees-button { margin-top: 16px; } `, ]; public render(): TemplateResult { return html`

idp.global

idp.global is a Open Source identity provider for the world wide web. You can get the code if you want to improve it. { window.location.href = 'https://code.foss.global/idp.global/idp.global'; }}>Get the code
Do you want to sign in or register? {}}>Sign In {}}>Register
`; } }