mirror of
https://github.com/BreizhHardware/AJAX.git
synced 2026-01-18 16:47:39 +01:00
46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="FR" data-bs-theme="dark">
|
|
<head>
|
|
<!-- Meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Title -->
|
|
<title>AJAX</title>
|
|
|
|
<!-- CSS Styles -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
|
|
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"
|
|
integrity="sha256-L/W5Wfqfa0sdBNIKN9cG6QA5F2qx4qICmU2VgLruv9Y=" crossorigin="anonymous">
|
|
|
|
<script src="js/ajax.js" defer></script>
|
|
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<header class="container">
|
|
<br>
|
|
<h1>AJAX</h1>
|
|
<hr>
|
|
</header>
|
|
|
|
<!-- Errors -->
|
|
<section id="errors" class="container alert alert-danger" style="display: none">
|
|
</section>
|
|
|
|
<!-- Timestamp -->
|
|
<section class="container">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h4>Date et heure</h4>
|
|
</div>
|
|
<div id="timestamp" class="card-body">
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|