
<!doctype html>
<html class="no-js " lang="en">
<head>
    <title>Tracking - Aktek Tracking Portal</title>
        <meta charset="windows-1254">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <link rel="stylesheet" href="/assets/plugins/bootstrap/css/bootstrap.min.css">
    <link rel="stylesheet" href="/assets/plugins/jvectormap/jquery-jvectormap-2.0.3.css">
    <link rel="stylesheet" href="/assets/plugins/morrisjs/morris.css" />
    <link rel="stylesheet" href="/assets/css/main.css">
    <link rel="stylesheet" href="/assets/css/authentication.css">
    <link rel="stylesheet" href="/assets/css/color_skins.css">
    <link rel="stylesheet" href="/assets/plugins/footable-bootstrap/css/footable.bootstrap.min.css">
    <link rel="stylesheet" href="/assets/plugins/footable-bootstrap/css/footable.standalone.min.css">
    <link rel="stylesheet" href="/assets/css/root.css">
    <link rel="shortcut icon" href="/assets/images/favicon.png"  type="image/x-icon">
    <link rel="apple-touch-icon" href="/assets/images/favicon.png">
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
    <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>

<body class="theme-orange">
<div class="authentication">
    <div class="card">
        <div class="body">
            <div class="row">
                <div class="col-lg-12">
                    <div class="header slideDown">
                        <div class="logo"><img src="/assets/images/logo.png" alt=""></div>
                   </div>                        
                </div>

                

                <form class="col-lg-12" id="sign_in" method="POST" action="/login/"  onsubmit="return Login();">
                    <h5 class="title">Sayın Kullanıcı<br>Lütfen Giriş Yapınız</h5>
                    <div class="c20"></div>
                    <div class="form-group form-float">
                        <div class="form-line">
                            <label class="form-label">Email Adresiniz</label>
                            <input type="text" class="form-control"  name="username" id="username"  autofocus>
                        </div>
                    </div>
                    <div class="form-group form-float">
                        <div class="form-line">
                            <label class="form-label">Şifre</label>

                            <i class="fa fa-eye-slash" id="eye" style="color:#92293b; font-size:20px; position:absolute; margin:5px 0px 0px 280px; z-index:6666; cursor:pointer"></i>
                            <input type="password" class="form-control"  name="password" id="password">
                        </div>
                    </div>


                    <div class="col-lg-12">
                        <button type="submit" class="btn btn-raised btn-success waves-effect login"><i class="material-icons">check</i> GİRİŞ YAP</button>
                    </div>
                </form>
                <div class="col-lg-12 m-t-40">
                    <a class="btn l-slategray" href="/forgotpassword/">Şifremi Unuttum?</a>
                </div>                    
            </div>
        </div>
    </div>
</div>
<script src="/assets/bundles/libscripts.bundle.js"></script>    
<script src="/assets/bundles/vendorscripts.bundle.js"></script>
<script src="/assets/bundles/mainscripts.bundle.js"></script>
<script src="/assets/js/js.js"></script>
	<script type="text/javascript">
        $(function () {

            $('#eye').click(function () {

                if ($(this).hasClass('fa fa-eye-slash')) {

                    $(this).removeClass('fa fa-eye-slash');

                    $(this).addClass('fa fa-eye');

                    $('#password').attr('type', 'text');

                } else {

                    $(this).removeClass('fa fa-eye');

                    $(this).addClass('fa fa-eye-slash');

                    $('#password').attr('type', 'password');
                }
            });
        });	
    </script>
</body>
</html>