-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f3a6a5
commit bf7197c
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |