1+ @page " /lockscreen"
2+ <!-- note: using styles, not css, we will target Isolated CSS for this component when we upgrade to .NET5 -->
3+ <Overlay >
4+ <div style =" margin : 0 auto ; margin-top : 10% ; max-width : 400px ; " >
5+ <div class =" lockscreen-logo" style =" font-size : 35px ; font-weight : 300 ; margin-bottom : 25px ; text-align : center ; " >
6+ <a href =" /" ><b >Admin</b >LTE</a >
7+ </div >
8+ <!-- User name -->
9+ <div style =" font-weight : 600 ; text-align : center ;" >John Doe</div >
10+
11+ <!-- START LOCK SCREEN ITEM -->
12+ <div style =" border-radius : 4px ; background : #fff ; margin : 10px auto 30px ; padding : 0 ; position : relative ; width : 290px ; " >
13+ <!-- lockscreen image -->
14+ <div style =" border-radius : 50% ; background : #fff ; left : -10px ; padding : 5px ; position : absolute ; top : -25px ; z-index : 10 ;" >
15+ <img src =" _content/Blazor.AdminLte.Site.Shared/dist/img/user1-128x128.jpg" alt =" User Image" style =" border-radius : 50% ; height : 70px ; width : 70px ; " >
16+ </div >
17+ <!-- /.lockscreen-image -->
18+ <!-- lockscreen credentials (contains the form) -->
19+ <form style =" margin-left : 70px ;" >
20+ <div class =" input-group" >
21+ <input type =" password" style =" border : 0 ;outline : none ;" placeholder =" password" >
22+ <div class =" input-group-append" >
23+ <button type =" button" class =" btn" ><i class =" fas fa-arrow-right text-muted" ></i ></button >
24+ </div >
25+ </div >
26+ </form >
27+ <!-- /.lockscreen credentials -->
28+ </div >
29+ <!-- /.lockscreen-item -->
30+ <div class =" help-block text-center" >
31+ Enter your password to retrieve your session
32+ </div >
33+ <div class =" text-center" >
34+ <a href =" login.html" >Or sign in as a different user</a >
35+ </div >
36+ <div class =" lockscreen-footer text-center" >
37+ Copyright © 2014-2019 <b ><a href =" http://adminlte.io" class =" text-black" >AdminLTE.io</a ></b ><br >
38+ All rights reserved
39+ </div >
40+ </div >
41+ </Overlay >
0 commit comments