21 строка
919 B
HTML
21 строка
919 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="ru-RU">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>Переадресация Корпоративного портала</title>
|
||
|
<link rel="stylesheet" href="/styles.css" type="text/css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<h2>Переадресация Корпоративного портала</h2>
|
||
|
<div id="switch-button">
|
||
|
<label for="ru-to-local">RU на LOCAL</label>
|
||
|
<label for="no-redirect">Отключить</label>
|
||
|
<label for="local-to-ru">LOCAL на RU</label>
|
||
|
</div>
|
||
|
<input id="ru-to-local" type="radio" name="switch-redirect" value="ru-to-local" />
|
||
|
<input id="no-redirect" type="radio" name="switch-redirect" value="no-redirect" />
|
||
|
<input id="local-to-ru" type="radio" name="switch-redirect" value="local-to-ru" />
|
||
|
<script src="/popup.js"></script>
|
||
|
</body>
|
||
|
</html>
|