penambahan register
This commit is contained in:
parent
12e0f8b0cc
commit
00390b2505
@ -7246,7 +7246,7 @@ span[class*="fi-rr-"]:before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bg-pink {
|
.bg-pink {
|
||||||
background-color: #d336e7 !important;
|
background-color: #001151 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-search-item {
|
.main-search-item {
|
||||||
|
|||||||
@ -171,14 +171,13 @@
|
|||||||
<span class="text-danger ms-1">*</span></label>
|
<span class="text-danger ms-1">*</span></label>
|
||||||
<div class="eRadios">
|
<div class="eRadios">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input type="radio" value="0" name="enable_drip_content" class="form-check-input eRadioSuccess" id="drip_off" required checked>
|
<input type="radio" value="1" name="enable_drip_content" class="form-check-input eRadioPrimary" id="drip_on" required checked>
|
||||||
<label for="drip_off" class="form-check-label">{{ get_phrase('Off') }}</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-check">
|
|
||||||
<input type="radio" value="1" name="enable_drip_content" class="form-check-input eRadioPrimary" id="drip_on" required>
|
|
||||||
<label for="drip_on" class="form-check-label">{{ get_phrase('On') }}</label>
|
<label for="drip_on" class="form-check-label">{{ get_phrase('On') }}</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input type="radio" value="0" name="enable_drip_content" class="form-check-input eRadioSuccess" id="drip_off" required>
|
||||||
|
<label for="drip_off" class="form-check-label">{{ get_phrase('Off') }}</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="header-content-right d-flex align-items-center justify-content-end">
|
<div class="header-content-right d-flex align-items-center justify-content-end">
|
||||||
|
|
||||||
|
<!-- Button Sembunyikan/Tampilkan Navigasi -->
|
||||||
|
<div class="d-none d-sm-block me-2">
|
||||||
|
<button id="toggle-navigation" class="btn btn-sm btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="bottom" title="{{ get_phrase('Toggle Navigation') }}">
|
||||||
|
<span id="toggle-navigation-text">{{ get_phrase('Sembunyikan Navigasi') }}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- language Select -->
|
<!-- language Select -->
|
||||||
<div class="d-none d-sm-block">
|
<div class="d-none d-sm-block">
|
||||||
<div class="img-text-select ">
|
<div class="img-text-select ">
|
||||||
@ -86,34 +93,6 @@
|
|||||||
<span>{{ get_phrase('Watch video tutorial') }}</span>
|
<span>{{ get_phrase('Watch video tutorial') }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://support.creativeitem.com" target="_blank" class="dropdown-item">
|
|
||||||
<i class="fi-rr-envelope-plus"></i>
|
|
||||||
<span>{{ get_phrase('Get customer support') }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://support.creativeitem.com" target="_blank" class="dropdown-item">
|
|
||||||
<i class="fi-rr-box-up"></i>
|
|
||||||
<span>{{ get_phrase('Order customization') }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://support.creativeitem.com" target="_blank" class="select-text text-capitalize">
|
|
||||||
<i class="fi-rr-add"></i>
|
|
||||||
<span>{{ get_phrase('Request a new feature') }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://creativeitem.com/services" target="_blank" class="text-premium select-text text-capitalize d-flex align-items-center">
|
|
||||||
<i class="fi-rr-settings-sliders me-1"></i>
|
|
||||||
<span>{{ get_phrase('Get Services') }}</span>
|
|
||||||
<i class="fi-rr-crown ms-auto"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -148,3 +127,33 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
const toggleButton = document.getElementById('toggle-navigation');
|
||||||
|
const toggleText = document.getElementById('toggle-navigation-text');
|
||||||
|
let isNavigationHidden = false;
|
||||||
|
|
||||||
|
toggleButton.addEventListener('click', function() {
|
||||||
|
const topMenu = document.getElementById('top_menu');
|
||||||
|
|
||||||
|
if (isNavigationHidden) {
|
||||||
|
// Tampilkan navigasi
|
||||||
|
topMenu.style.visibility = 'visible';
|
||||||
|
topMenu.style.height = '56px';
|
||||||
|
topMenu.style.minHeight = '56px';
|
||||||
|
toggleText.textContent = '{{ get_phrase("Sembunyikan Navigasi") }}';
|
||||||
|
} else {
|
||||||
|
// Sembunyikan navigasi
|
||||||
|
topMenu.style.visibility = 'hidden';
|
||||||
|
topMenu.style.height = '0px';
|
||||||
|
topMenu.style.minHeight = '0px';
|
||||||
|
toggleText.textContent = '{{ get_phrase("Tampilkan Navigasi") }}';
|
||||||
|
}
|
||||||
|
|
||||||
|
isNavigationHidden = !isNavigationHidden;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|||||||
@ -54,6 +54,13 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="become-instructor-fields" class="{{ old('instructor') ? '' : 'd-none' }}">
|
<div id="become-instructor-fields" class="{{ old('instructor') ? '' : 'd-none' }}">
|
||||||
|
<div class="form-group mb-5">
|
||||||
|
<label for="" class="form-label">{{ get_phrase('NIDN') }}</label>
|
||||||
|
<input class="form-control @error('phone') is-invalid @enderror" id="nidn" type="text" name="nidn" placeholder="{{ get_phrase('Enter your NIDN number') }}" value="{{ old('nidn') }}">
|
||||||
|
@error('phone')
|
||||||
|
<small class="text-danger">{{ $message }}</small>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
<div class="form-group mb-5">
|
<div class="form-group mb-5">
|
||||||
<label for="phone" class="form-label">{{ get_phrase('Phone') }}</label>
|
<label for="phone" class="form-label">{{ get_phrase('Phone') }}</label>
|
||||||
<input class="form-control @error('phone') is-invalid @enderror" id="phone" type="phone" name="phone" placeholder="{{ get_phrase('Enter your phone number') }}" value="{{ old('phone') }}">
|
<input class="form-control @error('phone') is-invalid @enderror" id="phone" type="phone" name="phone" placeholder="{{ get_phrase('Enter your phone number') }}" value="{{ old('phone') }}">
|
||||||
|
|||||||
@ -135,14 +135,13 @@
|
|||||||
<span class="text-danger ms-1">*</span></label>
|
<span class="text-danger ms-1">*</span></label>
|
||||||
<div class="eRadios">
|
<div class="eRadios">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input type="radio" value="0" name="enable_drip_content" class="form-check-input eRadioSuccess" id="drip_off" required checked>
|
<input type="radio" value="1" name="enable_drip_content" class="form-check-input eRadioPrimary" id="drip_on" required checked>
|
||||||
<label for="drip_off" class="form-check-label">{{ get_phrase('Off') }}</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-check">
|
|
||||||
<input type="radio" value="1" name="enable_drip_content" class="form-check-input eRadioPrimary" id="drip_on" required>
|
|
||||||
<label for="drip_on" class="form-check-label">{{ get_phrase('On') }}</label>
|
<label for="drip_on" class="form-check-label">{{ get_phrase('On') }}</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input type="radio" value="0" name="enable_drip_content" class="form-check-input eRadioSuccess" id="drip_off" required>
|
||||||
|
<label for="drip_off" class="form-check-label">{{ get_phrase('Off') }}</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user