62 lines
2.6 KiB
PHP
62 lines
2.6 KiB
PHP
@extends('admin.layout')
|
|
|
|
@section('content')
|
|
<link rel="stylesheet" href="{{ asset('css/fitur-admin.css') }}">
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
|
|
<div class="dashboard-section d-flex justify-content-center">
|
|
<div style="width: 100%; max-width: 700px;">
|
|
<div class="mb-4 text-center">
|
|
<h4 class="fw-bold text-dark">Tambah Guru BK</h4>
|
|
<p class="text-muted small">Daftarkan akun guru pembimbing baru untuk sistem rekomendasi.</p>
|
|
</div>
|
|
|
|
<div class="card border-0 shadow-sm rounded-4">
|
|
<div class="card-body p-5">
|
|
<form id="formCreateGuru">
|
|
<div class="row g-4">
|
|
<div class="col-md-12 form-group-custom">
|
|
<label class="fw-bold small text-muted">Nama Lengkap & Gelar</label>
|
|
<input type="text" id="nama_guru" class="form-control input-custom" placeholder="Contoh: Budi Santoso, S.Pd" required>
|
|
</div>
|
|
</div>
|
|
<div class="mt-5 d-flex gap-2 justify-content-end">
|
|
<button type="submit" id="btnSave" class="btn text-white px-5 shadow-sm" style="background-color: var(--primary-green); border-radius: 10px;">Daftarkan Guru</button>
|
|
<a href="{{ route('admin.guru') }}" class="btn btn-light px-4" style="border-radius: 10px;">Batal</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
document.getElementById('formCreateGuru').addEventListener('submit', async (e) => {
|
|
e.preventDefault();
|
|
const btn = document.getElementById('btnSave');
|
|
btn.disabled = true;
|
|
|
|
const payload = {
|
|
nama_guru: document.getElementById('nama_guru').value
|
|
};
|
|
|
|
try {
|
|
const response = await fetch('/api/admin/guru', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Authorization': 'Bearer ' + localStorage.getItem('access_token'),
|
|
'Accept': 'application/json'
|
|
},
|
|
body: JSON.stringify(payload)
|
|
});
|
|
|
|
if (response.ok) {
|
|
Swal.fire({ icon: 'success', title: 'Berhasil!', confirmButtonColor: '#2D6A4F' })
|
|
.then(() => { window.location.href = "{{ route('admin.guru') }}"; });
|
|
}
|
|
} catch (error) { Swal.fire('Error!', 'Gagal menghubungi server.', 'error'); }
|
|
finally { btn.disabled = false; }
|
|
});
|
|
</script>
|
|
@endsection |