<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TeamSpeak Connection Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
.container {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.logo {
width: 100px;
}
.ts-link {
display: block;
margin: 20px 0;
padding: 10px 20px;
background-color: #0082FC;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<img src="teamspeak-logo.png" alt="TeamSpeak Logo" class="logo">
<img src="fpg-logo.png" alt="FPG Logo" class="logo">
<a href="ts3server://fpg" class="ts-link">Click to connect to Team Speak server</a>
</div>
</body>
</html>