lock screen added

This commit is contained in:
Daniel
2023-07-18 14:30:13 +05:30
parent adb7949b0c
commit eaefd70c0a
4 changed files with 145 additions and 1 deletions

View File

@@ -279,7 +279,7 @@ const htmlPath = convertPathToHtml(path);
<a href="#" class="nav-link">
<i class="nav-icon bi bi-box-arrow-in-right"></i>
<p>
Login & Register
Auth
<i class="nav-arrow bi bi-chevron-right"></i>
</p>
</a>
@@ -296,6 +296,12 @@ const htmlPath = convertPathToHtml(path);
<p>Register v1</p>
</a>
</li>
<li class="nav-item">
<a href={htmlPath + "/examples/lockscreen.html"} class="nav-link">
<i class="nav-icon bi bi-circle"></i>
<p>Lockscreen</p>
</a>
</li>
</ul>
</li>

View File

@@ -0,0 +1,63 @@
---
import Head from "@components/_head.astro";
import Scripts from "@components/_scripts.astro";
const title = "AdminLTE 4 | Lockscreen";
const path = "../../../dist";
const htmlPath = "..";
const year = new Date().getFullYear();
---
<!DOCTYPE html>
<html lang="en">
<!--begin::Head-->
<head>
<Head title={title} path={path} />
</head>
<!--end::Head-->
<!--begin::Body-->
<body class="lockscreen bg-body-secondary">
<div class="lockscreen-wrapper">
<div class="lockscreen-logo">
<a href={htmlPath + "/index2.html"}><b>Admin</b>LTE</a>
</div>
<div class="lockscreen-name">John Doe</div>
<div class="lockscreen-item">
<div class="lockscreen-image">
<img src={path + "/assets/img/user1-128x128.jpg"} alt="User Image" />
</div>
<form class="lockscreen-credentials">
<div class="input-group">
<input
type="password"
class="form-control shadow-none"
placeholder="password"
/>
<div class="input-group-text border-0 bg-transparent px-1">
<button type="button" class="btn shadow-none">
<i class="bi bi-box-arrow-right text-body-secondary"></i>
</button>
</div>
</div>
</form>
</div>
<div class="help-block text-center">
Enter your password to retrieve your session
</div>
<div class="text-center">
<a href="login.html">Or sign in as a different user</a>
</div>
<div class="lockscreen-footer text-center">
Copyright © 2014-{year}
<b><a href="https://adminlte.io">AdminLTE.io</a></b><br />
All rights reserved
</div>
</div>
<Scripts />
</body><!--end::Body-->
</html>