This commit is contained in:
ImMocha 2025-06-20 23:01:58 +08:00
parent eedda5766b
commit 79eb11405c
2 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} }
.auth-sidebar { .auth-sidebar {
background-color: #28a745; background-color: #9ccf0d;
color: white; color: white;
padding: 30px 20px; padding: 30px 20px;
text-align: center; text-align: center;
@ -62,7 +62,7 @@
} }
.auth-title { .auth-title {
text-align: center; text-align: center;
color: #28a745; color: #9ccf0d;
margin-bottom: 30px; margin-bottom: 30px;
font-weight: bold; font-weight: bold;
} }
@ -71,7 +71,7 @@
margin-bottom: 15px; margin-bottom: 15px;
} }
.btn-auth { .btn-auth {
background-color: #28a745; background-color: #9ccf0d;
color: white; color: white;
border: none; border: none;
border-radius: 0; border-radius: 0;
@ -89,7 +89,7 @@
font-size: 0.9rem; font-size: 0.9rem;
} }
.auth-footer a { .auth-footer a {
color: #28a745; color: #9ccf0d;
text-decoration: none; text-decoration: none;
} }
.password-toggle { .password-toggle {

View File

@ -56,7 +56,7 @@
@if($user->role === 'pelanggan') @if($user->role === 'pelanggan')
<div class="form-group"> <div class="form-group">
<label for="phone">Nomor Telepon</label> <label for="phone">Nomor Telepon</label>
<input name="phone" type="text" class="form-control" <input name="phone" type="number" class="form-control"
id="phone" value="{{ $user->phone }}" > id="phone" value="{{ $user->phone }}" >
<small class="form-text text-muted">Nomor telepon tidak dapat diubah.</small> <small class="form-text text-muted">Nomor telepon tidak dapat diubah.</small>
</div> </div>