fixed login page again
This commit is contained in:
BIN
data/llm_proxy.db
Normal file
BIN
data/llm_proxy.db
Normal file
Binary file not shown.
@@ -170,39 +170,41 @@ body {
|
||||
|
||||
.form-group label {
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
top: 1.125rem;
|
||||
left: 1.25rem;
|
||||
font-size: 0.875rem;
|
||||
color: var(--fg3);
|
||||
font-weight: 500;
|
||||
pointer-events: none;
|
||||
transition: all 0.25s ease;
|
||||
background: var(--bg1);
|
||||
padding: 0 0.375rem;
|
||||
z-index: 2;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.form-group input:focus + label,
|
||||
.form-group input:not(:placeholder-shown) + label {
|
||||
top: -0.5rem;
|
||||
left: 0.75rem;
|
||||
font-size: 0.75rem;
|
||||
.form-group input:focus ~ label,
|
||||
.form-group input:not(:placeholder-shown) ~ label {
|
||||
top: -0.625rem;
|
||||
left: 0.875rem;
|
||||
font-size: 0.7rem;
|
||||
color: var(--orange);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.form-group input {
|
||||
padding: 1.5rem 1.25rem 1rem;
|
||||
padding: 1.625rem 1.25rem 1rem 1.25rem;
|
||||
background: var(--bg0);
|
||||
border: 2px solid var(--bg3);
|
||||
border-radius: 12px;
|
||||
font-size: 1rem;
|
||||
color: var(--fg1);
|
||||
transition: all 0.3s;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-group input:focus {
|
||||
border-color: var(--orange);
|
||||
box-shadow: 0 0 0 4px rgba(214, 93, 14, 0.15);
|
||||
box-shadow: 0 0 0 4px rgba(214, 93, 14, 0.2);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
@@ -23,18 +23,18 @@
|
||||
<p class="login-subtitle">Admin Dashboard</p>
|
||||
</div>
|
||||
<form id="login-form" class="login-form">
|
||||
<div class="form-group">
|
||||
<div class="form-group">
|
||||
<input type="text" id="username" name="username" placeholder="Username" required>
|
||||
<label for="username">
|
||||
<i class="fas fa-user"></i> Username
|
||||
</label>
|
||||
<input type="text" id="username" name="username" placeholder="admin" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password">
|
||||
<i class="fas fa-lock"></i> Password
|
||||
<i class="fas fa-user"></i>
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="password" id="password" name="password" placeholder="••••••••" required>
|
||||
</div>
|
||||
<label for="password">
|
||||
<i class="fas fa-lock"></i>
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="login-btn">
|
||||
<i class="fas fa-sign-in-alt"></i> Sign In
|
||||
|
||||
Reference in New Issue
Block a user