[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
web
/
[
Home
]
File: bg_login.php
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta charset="utf-8" /> <title>Trucer Study BPI</title> <meta name="description" content="User login page" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <!-- bootstrap & fontawesome --> <link rel="stylesheet" href="<?php echo base_url();?>/assets/css/bootstrap.css" /> <link rel="stylesheet" href="<?php echo base_url();?>/assets/css/font-awesome.css" /> <!-- text fonts --> <link rel="stylesheet" href="<?php echo base_url();?>/assets/css/ace-fonts.css" /> <!-- ace styles --> <link rel="stylesheet" href="<?php echo base_url();?>/assets/css/ace.css" /> <!--[if lte IE 9]> <link rel="stylesheet" href="../assets/css/ace-part2.css" /> <![endif]--> <link rel="stylesheet" href="<?php echo base_url();?>/assets/css/ace-rtl.css" /> <script type="text/javascript"> window.jQuery || document.write("<script src='<?php echo base_url();?>/assets/js/jquery.js'>"+"<"+"/script>"); </script> <script type="text/javascript"> function cekform() { if(!$("#username").val()) { alert ('maaf username tidak boleh kosong'); $("#username").focus (); return false; } if(!$("#password").val()) { alert ('maaf password tidak boleh kosong'); $("#password").focus (); return false; } } </script> <script type="text/javascript"> $(document).ready(function(){ $("#nim").change(function(){ loadprodi() }); }); function loadprodi() { var nim=$("#nim").val(); $.ajax({ url:"<?php echo base_url();?>web/ceck", data:"nim=" + nim, success: function(html) { $("#ok").html(html); } }); } $(function(){ loadprodi(); }) </script> </head> <body class="login-layout"> <div class="main-container"> <div class="main-content"> <div class="row"> <div class="col-sm-10 col-sm-offset-1"> <div class="login-container"> <div class="center"> <h1> <span class="red"></span> <p> </p> </h1> <h4 class="blue" id="id-company-text">© Trucer Study</h4> </div> <div class="space-6"></div> <div class="position-relative"> <div id="login-box" class="login-box visible widget-box no-border"> <div class="widget-body"> <div class="widget-main"> <h4 class="header blue lighter bigger"> </h4> <div class="space-6"></div> <form method="POST" action="<?php echo base_url();?>web/login" onsubmit="return cekform();"> <fieldset> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="username" name="username" id="username" class="form-control" placeholder="Username" /> <i class="ace-icon fa fa-user"></i> </span> </label> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="password" name="password" id="password" class="form-control" placeholder="Password" /> <?php $info = $this->session->flashdata('info'); if(!empty($info)) { echo $info; } ?> <i class="ace-icon fa fa-lock"></i> </span> </label> <?php echo $this->session->flashdata('item');?><br> <?php echo $capcha;?><br> <input type="text" name="captcha" value="" placeholder="no spam" id="nim" onkeyup="loadprodi()" /> <label id="ok"></label> <div class="space"></div> <div class="clearfix"> <button type="submit" class="width-35 pull-right btn btn-sm btn-primary"> <i class="ace-icon fa fa-key"></i> <span class="bigger-110">Login</span> </button> </div> </div><!-- /.widget-main --> </div><!-- /.widget-body --> </div><!-- /.login-box --> <div id="forgot-box" class="forgot-box widget-box no-border"> <div class="widget-body"> <div class="widget-main"> <h4 class="header red lighter bigger"> <i class="ace-icon fa fa-key"></i> Retrieve Password </h4> <div class="space-6"></div> <p> Enter your email and to receive instructions </p> <form> <fieldset> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="email" class="form-control" placeholder="Email" /> <i class="ace-icon fa fa-envelope"></i> </span> </label> <div class="clearfix"> <button type="button" class="width-35 pull-right btn btn-sm btn-danger"> <i class="ace-icon fa fa-lightbulb-o"></i> <span class="bigger-110">Send Me!</span> </button> </div> </fieldset> </form> </div><!-- /.widget-main --> <div class="toolbar center"> <a href="#" data-target="#login-box" class="back-to-login-link"> Back to login <i class="ace-icon fa fa-arrow-right"></i> </a> </div> </div><!-- /.widget-body --> </div><!-- /.forgot-box --> <div id="signup-box" class="signup-box widget-box no-border"> <div class="widget-body"> <div class="widget-main"> <h4 class="header green lighter bigger"> <i class="ace-icon fa fa-users blue"></i> New User Registration </h4> <div class="space-6"></div> <p> Enter your details to begin: </p> <form> <fieldset> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="email" class="form-control" placeholder="Email" /> <i class="ace-icon fa fa-envelope"></i> </span> </label> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="text" class="form-control" placeholder="Username" /> <i class="ace-icon fa fa-user"></i> </span> </label> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="password" class="form-control" placeholder="Password" /> <i class="ace-icon fa fa-lock"></i> </span> </label> <label class="block clearfix"> <span class="block input-icon input-icon-right"> <input type="password" class="form-control" placeholder="Repeat password" /> <i class="ace-icon fa fa-retweet"></i> </span> </label> <label class="block"> <input type="checkbox" class="ace" /> <span class="lbl"> I accept the <a href="#">User Agreement</a> </span> </label> <div class="space-24"></div> <div class="clearfix"> <button type="reset" class="width-30 pull-left btn btn-sm"> <i class="ace-icon fa fa-refresh"></i> <span class="bigger-110">Reset</span> </button> <button type="button" class="width-65 pull-right btn btn-sm btn-success"> <span class="bigger-110">Register</span> <i class="ace-icon fa fa-arrow-right icon-on-right"></i> </button> </div> </fieldset> </form> </div> <div class="toolbar center"> <a href="#" data-target="#login-box" class="back-to-login-link"> <i class="ace-icon fa fa-arrow-left"></i> Back to login </a> </div> </div><!-- /.widget-body --> </div><!-- /.signup-box --> </div><!-- /.position-relative --> <div class="navbar-fixed-top align-right"> <br /> </div> </div> </div><!-- /.col --> </div><!-- /.row --> </div><!-- /.main-content --> </div><!-- /.main-container --> <!-- basic scripts --> <!--[if !IE]> --> <script type="text/javascript"> window.jQuery || document.write("<script src='<?php echo base_url();?>/assets/js/jquery.js'>"+"<"+"/script>"); </script> <!-- <![endif]--> <!--[if IE]> <script type="text/javascript"> window.jQuery || document.write("<script src='../assets/js/jquery1x.js'>"+"<"+"/script>"); </script> <![endif]--> <script type="text/javascript"> if('ontouchstart' in document.documentElement) document.write("<script src='<?php echo base_url();?>/assets/js/jquery.mobile.custom.js'>"+"<"+"/script>"); </script> <!-- inline scripts related to this page --> <script type="text/javascript"> jQuery(function($) { $(document).on('click', '.toolbar a[data-target]', function(e) { e.preventDefault(); var target = $(this).data('target'); $('.widget-box.visible').removeClass('visible');//hide others $(target).addClass('visible');//show target }); }); //you don't need this, just used for changing background jQuery(function($) { $('#btn-login-dark').on('click', function(e) { $('body').attr('class', 'login-layout'); $('#id-text2').attr('class', 'white'); $('#id-company-text').attr('class', 'blue'); e.preventDefault(); }); $('#btn-login-light').on('click', function(e) { $('body').attr('class', 'login-layout light-login'); $('#id-text2').attr('class', 'grey'); $('#id-company-text').attr('class', 'blue'); e.preventDefault(); }); $('#btn-login-blur').on('click', function(e) { $('body').attr('class', 'login-layout blur-login'); $('#id-text2').attr('class', 'white'); $('#id-company-text').attr('class', 'light-blue'); e.preventDefault(); }); }); </script> </body> </html>