My-extension/update_id.html

47 lines
1.0 KiB
HTML

<!-- chrome-extension://cimkehmfiogjfgmglapeabbnhjkdhnmj/update_id.html moz-...UUID edge- -->
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>Установка ID</title>
<style>
body {
font-family: system-ui, sans-serif;
background-color: #f7f9fc;
color: #222;
margin: 40px;
text-align: center;
}
.card {
background: white;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 30px;
max-width: 500px;
margin: auto;
}
.success {
color: green;
font-weight: bold;
}
.error {
color: red;
font-weight: bold;
}
code {
background: #eef3fa;
padding: 4px 8px;
border-radius: 4px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="card">
<h2>Установка идентификатора клиента</h2>
<div id="status">Обработка...</div>
</div>
<script src="update_id.js"></script>
</body>
</html>