Skip to content

Commit

Permalink
built example
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldubois98 committed Jun 14, 2024
1 parent 7f3a6a5 commit bf7197c
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>

<head>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- others -->
<meta charset="utf-8" />
<title>MICS Lab - Summer 2024</title>
<meta name="description" content="Enigmas for the MICS 2024 Summer event">
<meta name="author" content="Paul Dubois">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>

<body>
<header>
<h3>MICS Lab</h3>
<h1>Summer 2024</h1>
<h2>Enigmas Race !</h2>
<h3><a href="enigmas">Enigmas Statements</a></h3>
</header>
<main>
<div class="enigma" id="enigma0">
<div class="title">
<h4>Enigma 1:</h4>
<p>Test</p>
</div>
<div class="input">
<label for="password0">Answer:</label>
<input type="password0" id="password0" name="password0" />
<button type="button" onclick="checkPassword0()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma0-check">
<img src="not_checked.svg" class="not-finished" id="enigma0-no-check">
</div>
</div>

<p id="finish-code"></p>

</main>
<footer>
<p>© 2023 MICS Lab</p>
</footer>
</body>
<script src="hash.js"></script>
<script src="finish_script.js"></script>
<script src="script.js"></script>

</html>

0 comments on commit bf7197c

Please sign in to comment.