📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
gorevyapscriptiv2.demodesign.com.tr
/
adminpnl
📝
profil.php
← Geri Dön
<?php include ('config.php'); include ('system/inc/sitedata.php'); if (!isset($_SESSION['login'])){ echo " <meta http-equiv='refresh' content='1;URL=login.php'> "; exit(); } ?> <!DOCTYPE html> <html lang="en"> <?php include ('system/inc/header.php'); ?> <!-- ============================================================== --> <!-- Start Page Content here --> <!-- ============================================================== --> <div class="content-page"> <div class="content"> <!-- Start Content--> <div class="container-fluid"> <!-- start page title --> <div class="row"> <div class="col-12"> <div class="page-title-box d-flex align-items-center justify-content-between"> <h4 class="page-title"><?=$site_name;?></h4> <div class="page-title-right"> <ol class="breadcrumb m-0"> <li class="breadcrumb-item"><a href="javascript: void(0);"><?=$username;?></a></li> <li class="breadcrumb-item active">Hoşgeldiniz</li> </ol> </div> </div> </div> </div> <!-- end page title --> <div class="row"> <div class="col-xl-12"> <div class="card-box"> <h4 class="header-title mt-0 mb-3">Profil Ayarları</h4> <div class="row"> <div class="col-md-6"> <label>Kullanıcı Adı : </label> <input id="pro-username" class="form-control" type="text" value="<?=$username;?>"> </div> <div class="col-md-6"> <label> Şifreniz : <i class="far fa-eye" onclick="togglePassword()"></i></label> <input id="pro-password" class="form-control" type="password" value="<?=$password;?>" > </div> <div class="col-md-12"> <br> <button id="btn-profil" class="btn btn-primary" style="width:100%">GÜNCELLE</button> </div> </div> </div> </div><!-- end col --> </div> <!-- end row --> </div> <!-- container-fluid --> </div> <!-- content --> <?php include ('system/inc/footer.php'); ?> <script> function togglePassword() { var element = document.getElementById('pro-password'); element.type = (element.type == 'password' ? 'text' : 'password'); } </script> </body> </html>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula