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 {
|
.form-group label {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 1rem;
|
top: 1.125rem;
|
||||||
left: 1.25rem;
|
left: 1.25rem;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
color: var(--fg3);
|
color: var(--fg3);
|
||||||
font-weight: 500;
|
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
transition: all 0.25s ease;
|
transition: all 0.25s ease;
|
||||||
background: var(--bg1);
|
background: var(--bg1);
|
||||||
padding: 0 0.375rem;
|
padding: 0 0.375rem;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group input:focus + label,
|
.form-group input:focus ~ label,
|
||||||
.form-group input:not(:placeholder-shown) + label {
|
.form-group input:not(:placeholder-shown) ~ label {
|
||||||
top: -0.5rem;
|
top: -0.625rem;
|
||||||
left: 0.75rem;
|
left: 0.875rem;
|
||||||
font-size: 0.75rem;
|
font-size: 0.7rem;
|
||||||
color: var(--orange);
|
color: var(--orange);
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group input {
|
.form-group input {
|
||||||
padding: 1.5rem 1.25rem 1rem;
|
padding: 1.625rem 1.25rem 1rem 1.25rem;
|
||||||
background: var(--bg0);
|
background: var(--bg0);
|
||||||
border: 2px solid var(--bg3);
|
border: 2px solid var(--bg3);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: var(--fg1);
|
color: var(--fg1);
|
||||||
transition: all 0.3s;
|
transition: all 0.3s;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group input:focus {
|
.form-group input:focus {
|
||||||
border-color: var(--orange);
|
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;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,18 +23,18 @@
|
|||||||
<p class="login-subtitle">Admin Dashboard</p>
|
<p class="login-subtitle">Admin Dashboard</p>
|
||||||
</div>
|
</div>
|
||||||
<form id="login-form" class="login-form">
|
<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">
|
<label for="username">
|
||||||
<i class="fas fa-user"></i> Username
|
<i class="fas fa-user"></i>
|
||||||
</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
|
|
||||||
</label>
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
<input type="password" id="password" name="password" placeholder="••••••••" required>
|
<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">
|
<div class="form-group">
|
||||||
<button type="submit" class="login-btn">
|
<button type="submit" class="login-btn">
|
||||||
<i class="fas fa-sign-in-alt"></i> Sign In
|
<i class="fas fa-sign-in-alt"></i> Sign In
|
||||||
|
|||||||
Reference in New Issue
Block a user