Implement http server

This commit is contained in:
2025-12-03 15:58:39 +01:00
parent 02da98dff5
commit 223b3c4fdf
3 changed files with 100 additions and 6 deletions

45
assets/pages/index.html Normal file
View File

@@ -0,0 +1,45 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MASI 3DSecure</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, footer {
background: #f4f4f4;
padding: 15px;
text-align: center;
}
main {
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome!</h1>
</header>
<main>
<input placeholder="Username">
<br>
<input placeholder="Password">
<br>
<button>Connect</button>
</main>
<footer>
</footer>
<script>
</script>
</body>
</html>