- Implemented "click-outside-to-close" functionality for both the Challenge Modal and User Dropdown - Added protocol-specific action buttons for challenges: "Open in new tab" for HTTP and "Copy to clipboard" for NC - Enhanced Scoreboard rankings with significantly larger, consistent font sizes (text-2xl) for better readability - Rebranded "TEAM_IDENTIFIER" to "PLAYER" and "TOTAL_POINTS" to "POINTS" across the platform (Scoreboard, Matrix, User Menu) - Updated navigation: Renamed "SCOREBOARD" to "SCORES" in the nav bar and dynamic page titles - Modernized User Dropdown menu with a dedicated "PLAYER" header and "LOGOUT" action - Improved Score Matrix and Score Graph titles for consistency with the new "Player" terminology - Added CAPTCHA human verification (svg-captcha) to Login and Registration flows for enhanced security - Optimized frontend assets by migrating Tailwind and JetBrains Mono to local hosting - Refactored Admin panel: Renamed "Operators" to "Users" and improved layout alignment
64 lines
1.6 KiB
HTML
64 lines
1.6 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>HIPCTF</title>
|
|
<script src="/tailwind.js"></script>
|
|
<link href="/jetbrains-mono.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
background-color: #000000;
|
|
color: #ff0000;
|
|
}
|
|
.hxp-border {
|
|
border: 3px solid #ff0000;
|
|
}
|
|
.hxp-border-purple {
|
|
border: 2px solid #bf00ff;
|
|
}
|
|
.hxp-btn {
|
|
background: #ff0000;
|
|
color: #000;
|
|
font-weight: 800;
|
|
padding: 10px 20px;
|
|
transition: all 0.1s;
|
|
}
|
|
.hxp-btn:hover {
|
|
background: #000;
|
|
color: #ff0000;
|
|
box-shadow: 0 0 15px #ff0000;
|
|
}
|
|
.hxp-card {
|
|
background: #000;
|
|
border: 2px solid #333;
|
|
}
|
|
.hxp-card:hover {
|
|
border-color: #bf00ff;
|
|
}
|
|
::-webkit-scrollbar { width: 10px; }
|
|
::-webkit-scrollbar-track { background: #000; }
|
|
::-webkit-scrollbar-thumb { background: #ff0000; }
|
|
</style>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
|
|
"react/": "https://esm.sh/react@^19.2.3/",
|
|
"react": "https://esm.sh/react@^19.2.3",
|
|
"react-router-dom": "https://esm.sh/react-router-dom@^7.11.0",
|
|
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
|
|
"vite": "https://esm.sh/vite@^7.3.0",
|
|
"@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^5.1.2"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/index.tsx"></script>
|
|
</body>
|
|
</html>
|