Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ltman.eemo.co.kr
/
public_html
/
www_
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ltman.eemo.co.kr/public_html/www_/login.php
<? session_cache_limiter('no-cache, must-revalidate'); session_start(); header("Pragma: no-cache"); header("Cache-Control: no-cache,must-revalidate"); header("Content-Type: text/html; charset=utf-8"); include_once("dbconn.php"); include_once("lib.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?=$_TITLE?></title> <!-- Global stylesheets --> <link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700,900" rel="stylesheet" type="text/css"> <link href="../../../../global_assets/css/icons/icomoon/styles.css" rel="stylesheet" type="text/css"> <link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css"> <link href="assets/css/bootstrap_limitless.min.css" rel="stylesheet" type="text/css"> <link href="assets/css/layout.min.css" rel="stylesheet" type="text/css"> <link href="assets/css/components.min.css" rel="stylesheet" type="text/css"> <link href="assets/css/colors.min.css" rel="stylesheet" type="text/css"> <!-- /global stylesheets --> <!-- Core JS files --> <script src="../../../../global_assets/js/main/jquery.min.js"></script> <script src="../../../../global_assets/js/main/bootstrap.bundle.min.js"></script> <script src="../../../../global_assets/js/plugins/loaders/blockui.min.js"></script> <!-- /core JS files --> <!-- Theme JS files --> <script src="../../../../global_assets/js/plugins/forms/styling/uniform.min.js"></script> <script src="assets/js/app.js"></script> <script src="../../../../global_assets/js/demo_pages/login.js"></script> <!-- /theme JS files --> <script src="../../../../global_assets/js/plugins/notifications/bootbox.min.js"></script> <script src="../../../../global_assets/js/demo_pages/components_modals.js"></script> <link href="assets/messagebox.css" rel="stylesheet"> <script src="assets/messagebox.js"></script> </head> <body> <!-- Main navbar --> <div class="navbar navbar-expand-md navbar-dark"> <div class="navbar-brand"> <a href="login.php" class="d-inline-block"> <img src="assets/logo2_hori.png" alt="" style='height:30px;margin-top:-5px;margin-bottom:-5px'> </a> </div> </div> <!-- /main navbar --> <!-- Page content --> <div class="page-content"> <!-- Main content --> <div class="content-wrapper"> <!-- Content area --> <div class="content d-flex justify-content-center align-items-center"> <!-- Login form --> <form class="login-form" name='frm_reg' onsubmit="return false;"> <div class="card mb-0"> <div class="card-body"> <div class="text-center mb-3"> <img src="assets/egg_logo_500.png" alt="" style='height:100px;margin-top:-5px;margin-bottom:-5px'> <h5 class="mb-0">로그인</h5> </div> <div class="form-group form-group-feedback form-group-feedback-left"> <input type="text" class="form-control" placeholder="아이디"> <div class="form-control-feedback"> <i class="icon-user text-muted"></i> </div> </div> <div class="form-group form-group-feedback form-group-feedback-left"> <input type="password" class="form-control" placeholder="패스워드"> <div class="form-control-feedback"> <i class="icon-lock2 text-muted"></i> </div> </div> <div class="form-group d-flex align-items-center"> <div class="form-check mb-0"> <label class="form-check-label"> <input type="checkbox" name="remember" class="form-input-styled" checked data-fouc> 로그인상태 유지 </label> </div> <a href="login_password_recover.html" class="ml-auto">비밀번호를 잃어버렸나요?</a> </div> <div class="form-group"> <button type="button" class="btn btn-primary btn-block" onclick="fn_speech()">로그인하기 <i class="icon-circle-right2 ml-2"></i></button> </div> <div class="form-group text-center text-muted content-divider"> <span class="px-2">또는</span> </div> <div class="form-group text-center"> <button type="button" class="btn btn-light" onclick="location.href='join.php'">회원가입</button> <button type="button" class="btn btn-light"> ID/PW 찾기</button> </div> </div> </div> </form> <!-- /login form --> </div> <!-- /content area --> </div> <!-- /main content --> </div> <!-- /page content --> </body> </html> <script> function fn_token() { if(typeof(window.Android) !== 'undefined') { window.Android.get_token(); } } function fn_speech() { if(typeof(window.Android) !== 'undefined') { window.Android.call_speech(); } } function save_token(token) { /* var formdata = new FormData(); formdata.append("vmem_no", '<?=$_SESSION[mem_no]?>'); formdata.append("token", token); if (formdata) { jQuery.ajax({ url: "fcm_save_token_do.php", type: "POST", data: formdata, processData: false, contentType: false, success: function (res) { //var json = jQuery.parseJSON(res); var json = eval("(" + res + ")"); if(json.rst=='1') { //window.location.reload(true); } else { //$.MessageBox(json.msg); } } }); } */ } function fn_scan(action) { if(typeof(window.Android) !== 'undefined') { window.Android.scan_code128(action); } } function scan_result(action,vcode) { bootbox.alert("action : "+action+"<br>vcode : "+vcode); } </script>