54 lines
1.8 KiB
PHP
Executable File
54 lines
1.8 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
|
|
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
|
|
<!--[if !IE]><!-->
|
|
<html lang="en">
|
|
<!--<![endif]-->
|
|
<head>
|
|
<?php include 'include/global.php'; ?>
|
|
<?php include 'include/head.php'; ?>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-bs-toggle="collapse" data-bs-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="#">Radiant FingerPrint</a>
|
|
</div>
|
|
<div id="navbar" class="collapse navbar-collapse">
|
|
<ul class="nav navbar-nav">
|
|
<li><a href="#" onclick="load('<?php echo $base_path?>device.php?action=index')">Lecteurs</a></li>
|
|
<li><a href="#" onclick="load('<?php echo $base_path?>user.php?action=index')">Utilisateurs</a></li>
|
|
<li><a href="#" onclick="load('<?php echo $base_path?>login.php?action=index')">Vérification</a></li>
|
|
<li><a href="#" onclick="load('<?php echo $base_path?>log.php?action=index')">Traces</a></li>
|
|
</ul>
|
|
</div><!--/.nav-collapse -->
|
|
</div>
|
|
</nav>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div id="content">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
jQuery(document).ready(function() {
|
|
|
|
console.log('Prêt pour utilisation...');
|
|
|
|
// load('<?php echo $base_path?>device.php?action=index');
|
|
load('flexcode/device.php?action=index');
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|