Files
psp_panel/src/app/components/login/login.component.html
T

33 lines
2.3 KiB
HTML
Raw Normal View History

2022-01-26 17:22:15 +03:00
<div class="surface-0 flex align-items-center justify-content-center min-h-screen min-w-screen overflow-hidden">
2022-01-17 22:20:31 +03:00
<div class="grid justify-content-center p-2 lg:p-0" style="min-width:80%">
<div class="col-12 mt-5 xl:mt-0 text-center">
2022-01-20 13:54:11 +03:00
<img src="assets/layout/images/{{config.dark ? 'logo-white' : 'logo-dark'}}.svg" alt="Sakai logo" class="mb-5" style="width:81px; height:60px;">
2022-01-17 22:20:31 +03:00
</div>
2022-01-20 13:54:11 +03:00
<div class="col-12 xl:col-6" style="border-radius:56px; padding:0.3rem; background: linear-gradient(180deg, var(--primary-color) 10%, rgba(33, 150, 243, 0) 30%);">
2022-01-26 17:22:15 +03:00
<div class="h-full w-full m-0 py-7 px-4" style="border-radius:53px; background: linear-gradient(180deg, var(--surface-50) 38.9%, var(--surface-0));">
2022-01-17 22:20:31 +03:00
<div class="text-center mb-5">
<img src="assets/layout/images/avatar.png" alt="Image" height="50" class="mb-3">
2022-01-20 13:54:11 +03:00
<div class="text-900 text-3xl font-medium mb-3">Welcome, Isabel!</div>
<span class="text-600 font-medium">Sign in to continue</span>
2022-01-17 22:20:31 +03:00
</div>
2022-01-17 22:23:56 +03:00
<div class="w-full md:w-10 mx-auto">
2022-01-20 13:54:11 +03:00
<label for="email1" class="block text-900 text-xl font-medium mb-2">Email</label>
2022-01-25 10:37:27 +03:00
<input id="email1" type="text" placeholder="Email address" pInputText class="w-full mb-3" style="padding:1rem;">
2022-01-17 22:20:31 +03:00
2022-01-20 13:54:11 +03:00
<label for="password1" class="block text-900 font-medium text-xl mb-2">Password</label>
2022-01-17 22:20:31 +03:00
<p-password id="password1" [(ngModel)]="password" placeholder="Password" [toggleMask]="true" styleClass="w-full mb-3"></p-password>
<div class="flex align-items-center justify-content-between mb-5">
<div class="flex align-items-center">
<p-checkbox id="rememberme1" [binary]="true" styleClass="mr-2"></p-checkbox>
<label for="rememberme1">Remember me</label>
2022-01-14 15:54:36 +03:00
</div>
2022-01-20 13:54:11 +03:00
<a class="font-medium no-underline ml-2 text-right cursor-pointer" style="color: var(--primary-color)">Forgot password?</a>
2022-01-14 15:54:36 +03:00
</div>
2022-01-20 13:54:11 +03:00
<button pButton pRipple label="Sign In" class="w-full p-3 text-xl"></button>
2022-01-14 15:54:36 +03:00
</div>
</div>
</div>
</div>
</div>