You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
39 lines
1.6 KiB
39 lines
1.6 KiB
<!--Copyright © 2023 Entreprise SpaceTarders --> |
|
<!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.0"> |
|
<link rel="stylesheet" href="../css/style.css"> |
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script> |
|
<script type="module" src="../js/main.js"></script> |
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> |
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> |
|
<title>Space traders</title> |
|
</head> |
|
<body> |
|
<!-- Menu sur le côté --> |
|
<div class="menu"> |
|
<!-- Utilisation d'une checkbox --> |
|
<input type="checkbox" id="hamburger"> |
|
<!-- Label de la checkbox --> |
|
<label id="hamburger-logo" for="hamburger">☰</label> |
|
<!-- Le reste du menu --> |
|
<nav> |
|
<a href="index.html">Page d'accueil</a> |
|
<a href="contrats.html">Mes contrats</a> |
|
<a href="#">Mon agent</a> |
|
<a href="#">A propos</a> |
|
</nav> |
|
</div> |
|
<main class="main-window"> |
|
|
|
<input id="token" type="text"> |
|
<br> |
|
<canvas id="canvas"></canvas> |
|
|
|
|
|
</main> |
|
</body> |
|
</html> |