<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Browser Manager MCP - Connexion</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
}
.app-container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.content-wrapper {
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 24px;
}
.status-container {
margin-bottom: 24px;
}
.status-banner {
padding: 12px 16px;
border-radius: 6px;
font-weight: 500;
margin-bottom: 16px;
}
.status-banner.connecting {
background: #e3f2fd;
color: #1565c0;
border: 1px solid #bbdefb;
}
.status-banner.connected {
background: #e8f5e8;
color: #2e7d32;
border: 1px solid #c8e6c9;
}
.status-banner.error {
background: #ffebee;
color: #c62828;
border: 1px solid #ffcdd2;
}
.button-container {
display: flex;
gap: 12px;
justify-content: center;
}
.tab-section-title {
font-size: 16px;
font-weight: 600;
color: #374151;
margin-bottom: 16px;
}
.auth-token-section {
border-top: 1px solid #e5e7eb;
padding-top: 20px;
margin-top: 20px;
}
.auth-token-code {
word-break: break-all;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 12px;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="lib/ui/connect.js"></script>
</body>
</html>