📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
b2be-ticaretscripti.demodesign.com.tr
/
new
📝
uyeol.php
← Geri Dön
<title>Bayi Girişi / Kayıt Ol</title> <meta name="keywords" content="<?php echo $ayar["sitekey"]; ?>"> <meta name="description" content="<?php echo $ayar["sitedesc"]; ?>"> <meta property="og:url" content="<?php echo $url; ?>" /> <meta property="og:title" content="Üyelik Sözleşmesi ve Rıza Metni" /> <meta property="og:description" content="<?php echo $ayar["sitedesc"]; ?>" /> <style> #content { padding-bottom: 20px; background: rgba(255, 255, 255, 1); max-width: 500px; margin: auto; background-color: #ffffff; padding: 20px; box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px; margin-top: 30px; margin-bottom: 30px; } .phone #content { max-width: 100% !important; } @media screen and (max-width: 600px) { #account-login .row { display: grid !important; } } </style> <ul class="breadcrumb"> <li><a href="<?php echo $url; ?>"><i class="fa fa-home"></i></a></li> <li><a href="#">Bayi Girişi / Kayıt Ol</a></li> </ul> <div id="account-login" class="container"> <div class="row"> <div id="content" class="col-sm-12"> <div class="row login-box"> <div class="col-sm-12"> <div class="well col-sm-12"> <h2 class="title">Bayi Girişi</h2> <form action="" method="post" class="form-horizontal login-form"> <div class="form-group"> <label class="control-label" for="input-email">E-Posta Adresiniz</label> <input type="email" name="email" value="" id="input-email" class="form-control" required> </div> <div class="form-group"> <label class="control-label" for="input-password">Şifreniz</label> <input type="password" name="sifre" value="" id="input-password" class="form-control" required> </div> <div class="buttons"> <div class="pull-right"> <button type="submit" name="girisyap" value="true" class="btn btn-primary"> <span>GİRİŞ YAP</span> </button> </div> </div> <br> <div> <a href="sifremiunuttum/" target="_top">Parolamı Unuttum</a> </div> </form> </div> </div> </div> </div> <div id="content" class="col-md-6 col-12"> <div class="row login-box"> <div class="col-sm-12"> <div class="well col-sm-12"> <h2 class="title">Bayilik Kaydı</h2> <form action="" method="post" class="form-horizontal login-form"> <div class="form-group"> <label class="control-label" for="input-name">Adınız Soyadınız *</label> <input type="text" name="isim" value="" id="input-name" class="form-control" required> </div> <div class="form-group"> <label class="control-label" for="input-email">E-Posta Adresiniz *</label> <input type="email" name="email" value="" id="input-email" class="form-control" required> </div> <div class="form-group"> <label class="control-label" for="input-phone">Telefon Numaranız *</label> <input type="text" name="telefon" value="" id="input-phone" class="form-control" required> </div> <div class="form-group"> <label class="control-label" for="input-password">Şifreniz *</label> <input type="password" name="sifre" value="" id="input-password" class="form-control" required> </div> <div class="form-footer"> <div class="custom-control custom-checkbox"> <input type="checkbox" name="sozlesme" value="1" class="custom-control-input" id="register-policy" style="margin-right: 10px;" required> <button id="myBtn" style=";background: none;border: none;margin-left: -5px;">Bayilik Sözleşmesini</button> okudum ve kabul ediyorum. </div> <div class="custom-control custom-checkbox" style=""> <input type="checkbox" name="ebultensor" value="1" class="custom-control-input" id="register-policy2" style="margin-right: 5px;"> <label style="width: 80%;" class="custom-control-label" for="register-policy2">Ebültene kayıt olmak istiyorum</label> </div> </div> <div class="buttons"> <div class="pull-right"> <button type="submit" class="btn btn-primary" name="kayitol" value="true"> <span>KAYIT OL</span> </button> </div> </div> </form> </div> </div> </div> </div> </div> </div> <div id="myModal" class="modal"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title" id="myModalLabel">Bayilik Sözleşmesi</h4> </div> <div class="modal-body"> <p><?php echo $system["rizametni"]; ?> </p> <button type="button" class="sozlesmebuton closex" data-dismiss="modal" aria-hidden="true">Üyelik sözleşmesindeki maddeleri dikkatlica okudum ve kabul ediyorum.</button> </div> </div> </div> </div> <style> .sozlesmebuton { width: 100%; font-size: 12px; background: #464141; opacity: 1; padding: 10px; color: #fff; font-weight: 400; border-radius: 10px; } .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 999999999999999999; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0, 0, 0); /* Fallback color */ background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */ } /* Modal Content/Box */ .modal-content { background-color: #fefefe; margin: auto; /* 15% from the top and centered */ border: 1px solid #888; width: 100%; /* Could be more or less, depending on screen size */ padding: 30px; } /* The Close Button */ .closex {} .closex:hover, .closex:focus {} .custom-radio input { display: block !important; } @media screen and (max-device-width: 480px) and (orientation: portrait) { .modal-content { width: 100% !important; /* Full width */ } } </style> <script> // Get the modal var modal = document.getElementById("myModal"); // Get the button that opens the modal var btn = document.getElementById("myBtn"); // Get the <span> element that closes the modal var span = document.getElementsByClassName("closex")[0]; // When the user clicks on the button, open the modal btn.onclick = function() { modal.style.display = "block"; } // When the user clicks on <span> (x), close the modal span.onclick = function() { modal.style.display = "none"; } // When the user clicks anywhere outside of the modal, close it window.onclick = function(event) { if (event.target == modal) { modal.style.display = "none"; } } </script>
💾 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