34 lines
1.7 KiB
TypeScript
34 lines
1.7 KiB
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import {ButtonModule} from 'primeng/button';
|
||
|
|
import {RouterModule} from '@angular/router';
|
||
|
|
import {RippleModule} from 'primeng/ripple';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
standalone: true,
|
||
|
|
imports: [
|
||
|
|
ButtonModule,
|
||
|
|
RouterModule,
|
||
|
|
RippleModule
|
||
|
|
],
|
||
|
|
template: `
|
||
|
|
<div class="surface-ground flex align-items-center justify-content-center min-h-screen min-w-screen overflow-hidden">
|
||
|
|
<div class="flex flex-column align-items-center justify-content-center">
|
||
|
|
<img src="assets/demo/images/access/logo-orange.svg" alt="Sakai logo" class="mb-5 w-6rem flex-shrink-0">
|
||
|
|
<div style="border-radius:56px; padding:0.3rem; background: linear-gradient(180deg, rgba(247, 149, 48, 0.4) 10%, rgba(247, 149, 48, 0) 30%);">
|
||
|
|
<div class="w-full surface-card py-8 px-5 sm:px-8 flex flex-column align-items-center" style="border-radius:53px">
|
||
|
|
<div class="grid flex flex-column align-items-center">
|
||
|
|
<div class="flex justify-content-center align-items-center bg-orange-500 border-circle" style="width:3.2rem; height:3.2rem;">
|
||
|
|
<i class="text-50 pi pi-fw pi-lock text-2xl"></i>
|
||
|
|
</div>
|
||
|
|
<h1 class="text-900 font-bold text-4xl lg:text-5xl mb-2">Access Denied</h1>
|
||
|
|
<span class="text-600 mb-5">You do not have the necessary permisions. Please contact admins.</span>
|
||
|
|
<img src="assets/demo/images/access/asset-access.svg" alt="Access denied" class="mb-5" width="80%">
|
||
|
|
<button pButton pRipple icon="pi pi-arrow-left" label="Go to Dashboard" class="p-button-text" [routerLink]="['/']"></button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>`
|
||
|
|
})
|
||
|
|
export class Access { }
|