62 lines
2.5 KiB
PHP
62 lines
2.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<title><?= $school_info['school_name']; ?></title>
|
|
<link rel="icon" type="image/x-icon" href="<?php echo base_url(); ?>common_assets/fav.png">
|
|
<!--styles links-->
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/css/jquery-ui.min.css">
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/css/font-family.css">
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/css/all.css">
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/owl-carousel/css/owl.carousel.min.css">
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/css/style.css">
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets_teacher/css/style-responsive.css">
|
|
<script src="<?php echo base_url(); ?>assets_teacher/js/jquery-3.4.1.min.js"></script>
|
|
<script src="<?php echo base_url(); ?>assets_student/js/jquery.validate.js"></script>
|
|
|
|
<style>
|
|
@media (max-width: 767px) {
|
|
.content-to-hide {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.login-box {
|
|
/* margin-left: 0px !important;
|
|
margin-top: 0px !important; */
|
|
margin: auto;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class=" teacher-login-wrap">
|
|
<img src="<?php echo base_url(); ?>assets_teacher/images/login.gif" class="login-image content-to-hide">
|
|
<!-- <video class="login-video" preload="metadata" playsinline autoplay muted loop >
|
|
<source src="<?php echo base_url(); ?>assets_teacher/images/login.webm#t=0.001" type="video/webm">
|
|
<source src="<?php echo base_url(); ?>assets_teacher/images/login.webm#t=0.001" type="video/webm">
|
|
Your browser does not support the video tag.
|
|
</video> -->
|
|
<script>
|
|
document.getElementById('vid').play();
|
|
</script>
|
|
<header class="login-header">
|
|
<div class="login-wrap">
|
|
<div class="logo-wrap">
|
|
<img src="<?php echo base_url(); ?>common_assets/<?= $school_info['color_logo']; ?>">
|
|
</div>
|
|
</div>
|
|
<div class="header-menu-wrap">
|
|
<div class="login-mob-menu"><i class="fas fa-bars"></i></div>
|
|
<ul class="mob-menu">
|
|
<li><a href="">About Us</a></li>
|
|
<li><a href="">Contact Us</a></li>
|
|
</ul>
|
|
</div>
|
|
</header>
|