/
paada
/
example_redirect_min
Обзор
Документация
Войти
/
paada
/
example_redirect_min
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
docs/index.html
30 строк
1 KB
Alexander Bulaev
add html
06 авг 2026, 16:51
06 авг 2026, 16:51
5f4359e
Код
Авторство
О чём код?
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <h1 id="status">Pending</h1> <pre id="description"> </pre> <script> const getStatus = () => document.getElementById('status'); const getDescription = () => document.getElementById('description'); fetch("https://s.sberbank.ru/ru/person", {mode: 'no-cors'}).then(x => { console.log('success') getStatus().innerText = 'Сертификат подтвержден' getDescription().innerText = JSON.stringify(x); console.dir(x) }).catch(e => { getStatus().innerText = 'Сертификат отсуствует' getDescription().innerText = e; console.dir(e) }); </script> </body> </html>