35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, internal-scale=1, viewport-fit=cover">
|
|
<title>My Luggage Info</title>
|
|
<link rel="stylesheet" href="/static/style.css?v=43">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="header">
|
|
<img class="header-icon" src="/static/icon.png" alt="icon"/>
|
|
<h1 class="title">My Luggage Info</h1>
|
|
<div class="spacer"></div>
|
|
</header>
|
|
<div class="container">
|
|
<div class="content flex-vertical">
|
|
<div class="section-one flex-horizontal">
|
|
<label for="code">Secret Code (SC):</label>
|
|
<input id="code" type="text">
|
|
<button id="submitBtn">Submit</button>
|
|
</div>
|
|
<div class="section-two flex-vertical">
|
|
<p id="status" class="hidden">Text</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<p class="footer-text">Made hastily by <a class="footer-text" href="https://www.linkedin.com/in/steven-tracey18/">Steven Tracey</a></p>
|
|
</footer>
|
|
<script src="/static/verify.js"></script>
|
|
</body>
|
|
</html>
|