2024-08-14 01:09:41 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ru-RU">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="application-name" content="{{ app_name }}" />
|
|
|
|
<meta name="author" content="Иваницкий Глеб Олегович" />
|
|
|
|
<meta name="robots" content="none" />
|
2024-08-14 17:51:48 +03:00
|
|
|
<title>Настройки</title>
|
2024-08-14 01:09:41 +03:00
|
|
|
<link rel="icon" href="/static/icons/favicon.svg" type="image/svg+xml" />
|
2024-08-14 17:51:48 +03:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" type="text/css" />
|
|
|
|
<script type="importmap">
|
|
|
|
{
|
|
|
|
"imports": {
|
|
|
|
"@material/web/": "https://esm.run/@material/web/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script type="module">
|
|
|
|
import '@material/web/all.js';
|
|
|
|
import {styles as typescaleStyles} from '@material/web/typography/md-typescale-styles.js';
|
|
|
|
|
|
|
|
document.adoptedStyleSheets.push(typescaleStyles.styleSheet);
|
|
|
|
</script>
|
|
|
|
<script src="https://telegram.org/js/telegram-web-app.js"></script>
|
|
|
|
<style>
|
|
|
|
body > * {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
2024-08-14 01:09:41 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-08-14 17:51:48 +03:00
|
|
|
<md-outlined-text-field label="Favorite color"></md-outlined-text-field>
|
2024-08-14 01:09:41 +03:00
|
|
|
</body>
|
|
|
|
</html>
|