Skip to content

Commit

Permalink
Update login.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
muction authored Nov 2, 2022
1 parent 3817722 commit 263aeb1
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions Src/Views/Bamboo/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,35 +19,36 @@

<style>
body{
background: url("{{asset('static/stars/images/login_bg.jpg')}}") top center;
background: url("{{asset(config('stars.app.login_img', 'static/stars/images/login_bg.jpg'))}}") top center;
}
.lyear-wrapper {
position: relative;
/*background: #056EC8;*/
}
.lyear-login {
display: flex !important;
min-height: 100vh;
align-items: center !important;
float: right;
margin-right: 50px;
/*justify-content: right !important;*/
justify-content: center !important;
}
.login-center {
background: #f7f7f7;
min-width: 48.25rem;
background: #fff;
min-width: 38.25rem;
padding: 2.14286em 3.57143em;
border-radius: 8px;
border-radius: 5px;
margin: 2.85714em 0;
box-shadow: 1px 1px 5px #333333;
}
.login-header {
margin-bottom: 1.5rem !important;
}
.login-center .has-feedback.feedback-left .form-control {
padding-left: 38px;
padding-right: 12px;
}
.login-center .has-feedback.feedback-left .form-control-feedback {
left: 0;
right: auto;
Expand All @@ -57,12 +58,10 @@
z-index: 4;
color: #dcdcdc;
}
.login-center .has-feedback.feedback-left.row .form-control-feedback {
left: 15px;
}
.login-center .login-input{
height: 40px;
}
</style>
</head>

Expand All @@ -71,7 +70,7 @@
<div class="lyear-login">
<div class="login-center">
<div class="login-header text-center">
<H4>后台管理系统</H4>
<H4>{{config('stars.app.login_title', '后台管理系统')}}</H4>
</div>
<form action="{{ route('rotate.auth.login.handle') }}" method="post">
@csrf
Expand Down

0 comments on commit 263aeb1

Please sign in to comment.