Files
masi-3ds-cypher/assets/pages/index.html
2025-12-03 15:58:39 +01:00

45 lines
727 B
HTML

<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>