<!DOCTYPE html>
<html>
<head>
<title>Access Control Portal</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 600px;
margin: 40px auto;
padding: 20px;
line-height: 1.6;
}
h1 { color: #333; }
.connect-btn {
display: inline-block;
background: #0078d7;
color: white;
border: none;
padding: 12px 24px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
border-radius: 4px;
margin-top: 20px;
}
.connect-btn:hover {
background: #005fa3;
}
.info {
margin-top: 30px;
color: #666;
font-size: 14px;
}
</style>
</head>
<body>
<h1>Access Control Portal</h1>
<p>Welcome to the secure access portal for your access control system.</p>
<p>Click below to connect to your system:</p>
<a href="/access" class="connect-btn">Connect Now</a>
<div class="info">
<p>This secure connection uses standard web ports to bypass firewall restrictions.</p>
<p>For support, please contact your system administrator.</p>
</div>
</body>
</html>