<?php

include_once './include/include_class.php';
$adminInclude = new IncludeClass();
$adminInclude->adminEkle_include();
?>
<!DOCTYPE html>

<html>
    <head>
    <meta charset="UTF-8">
    <title>Yönetici Ekle</title>
    <?php 
$bootstrap = new Bootstrap();
$bootstrap->index_vb();
$bootstrap->login_vb();
?>
<script>
$(document).ready(function()
{
    $('#email').keyup(email_check);
}); 
function email_check()
{   
    var email = $('#email').val();
    
    if (email == '') {
        document.getElementById("txtHint").innerHTML = '';
    } else {
    jQuery.ajax({
        type: "POST",