403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/adeetie/application/modules/auth/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/adeetie/application/modules/auth/views/login.php
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>BEE Login</title>
    <link href="<?php echo URL_ASSETS_IMG; ?>/fav.png" rel="shortcut icon" />
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

    <link href="<?php echo URL_ASSETS_CSS; ?>/bootstrap.min.css" rel="stylesheet">
  
    <!--[if lt IE 9]>
  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  <![endif]-->

    <!-- The Rockstar jQuery -->
    <script src="<?php base_url('assets/js/jquery-2.2.3.min.js'); ?>"></script>
    <style>
    #login {
        background: url(<?php echo base_url('assets/images/login.png');
        ?>);
        background-repeat: no-repeat;
        background-size: cover;
    }


    .zed-login-container {
        position: relative;
        height: 100vh;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Roboto', sans-serif;
    }

    .zed-login-right .form-group {
        margin: 20px 0;
        position: relative;
    }

    .zed-login-quote {
        color: #31358c;
        font-weight: 500;
        font-size: 20px;
    }

    .zed-login-right .form-control {
        height: 36px;
        display: block;
        width: 90%;
        padding-left: 30px;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 1.25rem;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .zed-login-right select.form-control {
        width: 100%;
    }

    .zed-login-right .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem #007bff40;
    }

    .zed-login-box {
        width: 75%;
        background-color: #f7f7f7;
        border-radius: 8px;
        padding: 40px;
    }

    .zed-login-logo {
        width: 100px;
    }

    .sub-links {
        display: flex;
        margin: 10px;
        justify-content: flex-end;
    }

    .sub-links a {
        color: #333;
        text-decoration: none;
        font-size: 12px;
    }

    .sub-links a:hover {
        color: #31358c;
        text-decoration: underline;
    }

    .sub-links a:not(:last-child) {
        margin-right: 10px;
    }

    .input-icons i {
        position: absolute;
        left: 8px;
        top: 11px;
        font-size: 18px;
        color: #31358c;
        width: 20px;
    }

    .btn-group .btn-login {
        background: #404590;
        color: #fff;
        padding: 12px 30px;
        border: transparent;
        border-radius: 32px;
        cursor: pointer;
    }

    .alert-danger p {
        font-size: 12px;
        color: red;
    }

    #userTypes * {
        background-color: #404590;
        color: #fff;
    }

.forget-button {
    padding: 10px 21px;
    border-radius: 25px;
    margin-right: 10px;
    border: 1px solid #d1d1d1;
    font-size: 14px;
    color: #333;
    text-decoration: none
}

    </style>
</head>

<body id="login">
    <div class="container">
        <div class="col-sm-6">
            <div class="zed-login-container">
                <div class="zed-login-box">
                    <div class="zed-login-content">
                        <div class="zed-login-left">
                            <img src="<?php echo base_url();?>assets/images/bee-footer-logo.png" class="zed-login-logo">
                            <div class="zed-login-quote">LOGIN to BEE's Facilitation Centre</div>
                        </div>
                        <div class="zed-login-right">
                            <?php if(isset($message)){ ?>
                            <div id="infoMessage" class="alert alert-danger"><?php echo $message;?></div>
                            <?php } ?>


                            <?php echo form_open("auth/login", 'class="login-form"');?>
                            <div class="form-group input-icons">
                                <i class="fa fa-user-plus" aria-hidden="true"></i>
                                <select name="usertypes" id="usertypes" class="form-control" style="width: 305px"
                                    onchange="routePage(this)">
                                    <option hidden value="">User Type</option>
                                    <?php if(!empty($this->data['groups'])){ ?>
                                    <?php foreach( $this->data['groups'] as $value ){
                                        if(isset($value['id']) && !in_array($value['id'], CMS_ADMIN_USERS) ){
                                          echo "<option value='".$value['id']."'>".$value['description']."</option>";
                                        }
                                      }
                                     ?>
                                    <?php } ?>
                                </select>
                            </div>


                            <div class="form-group input-icons">
                                <i class="fa fa-user-circle-o" aria-hidden="true"></i>
                                <?php echo form_input($identity);?>
                            </div>


                            <div class="form-group input-icons">
                                <i class="fa fa-lock" aria-hidden="true"></i>
                                <?php echo form_input($password);?>
                            </div>

                            <div class="sub-links">
                                <a href="<?php echo base_url().'auth/register'?>">Borrowing unit Registration</a>
                               <a href="<?php echo base_url().'fi/register'?>">FI's Registration</a>
                            </div>

                            <div class="g-recaptcha" data-sitekey="6Ldi9IIkAAAAAJRok3IGTI96Yyp0u2Xi8DPMVZ3m" style="display:none;"></div>
                            <div>&nbsp;</div>
                            <div class="btn-group">
                                <?php echo form_submit('submit', lang('login_submit_btn'),'class="btn-login"');?>
                                <a class="forget-button" href="<?php echo base_url('auth/forgot_password'); ?>">Forgot Password?</a>
                            </div>

                            <div style="margin-top:10px"><a href="<?php echo base_url(); ?>"><i class="fa fa-home" aria-hidden="true"></i> Return to home</a></div>
                            <?php echo form_close();?>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>


    <script>
    function routePage(data) {

      const url =  `${window.location.protocol}//${window.location.hostname}`

        if (data.value == "6") {
            window.location.replace("https://adeetie.beeindia.gov.in/fauth")
        } else if (data.value == "7" || data.value == "8" || data.value == "9") {
            window.location.replace("https://adeetie.beeindia.gov.in/consoleauth")
        }
    }
    </script>
  <script src="https://www.google.com/recaptcha/api.js" async defer></script>
</body>

</html>

Youez - 2016 - github.com/yon3zu
LinuXploit