99 lines
4.0 KiB
PHP
99 lines
4.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>nHANCE</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" />
|
|
<meta content="Coderthemes" name="author" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<!-- App favicon -->
|
|
<link rel="shortcut icon" href="<?= base_url()."public"; ?>/assets/images/favicon.ico">
|
|
|
|
<!-- App css -->
|
|
<link href="<?= base_url()."public"; ?>/assets/css/bootstrap-material.min.css" rel="stylesheet" type="text/css"
|
|
id="bs-default-stylesheet" />
|
|
<link href="<?= base_url()."public"; ?>/assets/css/app-material.min.css" rel="stylesheet" type="text/css"
|
|
id="app-default-stylesheet" />
|
|
|
|
<link href="<?= base_url()."public"; ?>/assets/css/bootstrap-material-dark.min.css" rel="stylesheet" type="text/css"
|
|
id="bs-dark-stylesheet" />
|
|
<link href="<?= base_url()."public"; ?>/assets/css/app-material-dark.min.css" rel="stylesheet" type="text/css"
|
|
id="app-dark-stylesheet" />
|
|
|
|
<!-- icons -->
|
|
<link href="<?= base_url()."public"; ?>/assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
<style>
|
|
a:hover {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body class="loading auth-fluid-pages pb-0">
|
|
|
|
<div class="auth-fluid">
|
|
<!-- Auth fluid right content -->
|
|
<div class="auth-fluid-right bg-transparent">
|
|
<div class="auth-user-testimonial">
|
|
<h3 class="mb-3 text-white">Very elegant & impressive!</h3>
|
|
<p class="lead font-weight-normal"><i class="mdi mdi-format-quote-open"></i> I've been using this theme
|
|
for a while and I must say that whenever I am looking for a design - I refer to this theme for
|
|
specifics & implementation. With wide arrays of components, designs, charts - I would highly
|
|
recommend this theme for anyone using it for dashboard or project management usage.. <i
|
|
class="mdi mdi-format-quote-close"></i>
|
|
</p>
|
|
<h5 class="text-white">
|
|
- Admin User
|
|
</h5>
|
|
</div> <!-- end auth-user-testimonial-->
|
|
</div>
|
|
<!-- end Auth fluid right content -->
|
|
|
|
<!--Auth fluid left content -->
|
|
<div class="auth-fluid-form-box">
|
|
<div class="align-items-center d-flex h-100">
|
|
<div class="card-body">
|
|
|
|
<!-- Logo -->
|
|
<div class="auth-brand text-center">
|
|
<div class="auth-logo">
|
|
<a href="index.html" class="logo logo-dark text-center">
|
|
<span class="logo-lg">
|
|
</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group mb-0 text-center">
|
|
|
|
<a href="<?= base_url('auth/google'); ?>"><img
|
|
src="<?= base_url()."public"; ?>/assets/images/googleButton.svg" width="300"></a>
|
|
</div>
|
|
|
|
<?php if (session()->getFlashdata('error')) : ?>
|
|
<span class="widget-simple text-center">
|
|
<div class="media-body align-self-center font-24 avatar-title">
|
|
<p style="color: #f1556c!important;" class="mt-0" style><?= session('error') ?></p>
|
|
</div>
|
|
</span>
|
|
<?php endif; ?>
|
|
|
|
</div> <!-- end .card-body -->
|
|
</div> <!-- end .align-items-center.d-flex.h-100-->
|
|
</div>
|
|
<!-- end auth-fluid-form-box-->
|
|
</div>
|
|
<!-- end auth-fluid-->
|
|
|
|
<!-- Vendor js -->
|
|
<script src="<?= base_url()."public"; ?>/assets/js/vendor.min.js"></script>
|
|
<!-- App js -->
|
|
<script src="<?= base_url()."public"; ?>/assets/js/app.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|