initial push

This commit is contained in:
2023-03-02 17:44:00 +01:00
commit 7a22aa3f7d
25 changed files with 3303 additions and 0 deletions

36
index.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<link rel="stylesheet" href="./files/bootstrap.min.css">
<link rel="stylesheet" href="./files/layout.css">
<script src="./files/jquery-3.3.1.min.js"></script><script src="./files/popper.min.js"></script><script src="./files/bootstrap.min.js"></script>
<link rel="icon" type="image/png" href="../favicon.png" />
<title>REAP Simulators</title>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-md navbar-dark bg-dark" style="margin-top: 0px !important;">
<div class="container">
<a class="navbar-brand" href="./index.html"><img src="./files/robe_logo_white.svg"></a>
</div>
</nav>
<div class="container in">
<h1>Available simulators</h1>
<div class="row" id="boxes">
<div class="col-md-6 col-xl-4 box-c">
<h2>T1 Profile</h2>
<div class="box">
<button type="button" class="btn btn-primary" style="width: 100%;" onclick="location.href='t1/index.html'">Launch</button>
</div>
</div>
<div class="col-md-6 col-xl-4 box-c">
<h2>iForte</h2>
<div class="box">
<button type="button" class="btn btn-primary" style="width: 100%;" onclick="location.href='iforte_index.html'" disabled>Coming soon</button>
</div>
</div>
</div>
</div>
</body>
</html>