anonstream/anonstream/templates/nojs_stream.html

52 行
1.2 KiB
HTML
Raw 通常表示 履歴

2022-03-07 23:51:59 +09:00
{##
2022-07-24 11:24:40 +09:00
# SPDX-FileCopyrightText: 2022 n9k <https://git.076.ne.jp/ninya9k>
2022-03-07 23:51:59 +09:00
# SPDX-License-Identifier: AGPL-3.0-or-later
##}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2022-03-03 19:38:55 +09:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2022-03-07 16:11:49 +09:00
<meta http-equiv="content-security-policy" content="default-src 'none'; media-src 'self'; style-src 'nonce-{{ csp }}';">
<style nonce="{{ csp }}">
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
overflow: hidden;
2022-03-30 17:41:42 +09:00
color: #ddd;
font-family: sans-serif;
background-color: black;
}
2022-03-30 17:41:42 +09:00
{% if online %}
#video {
width: 100%;
height: 100%;
}
{% else %}
#offline {
width: 100%;
height: 100%;
text-align: center;
display: grid;
align-content: center;
font-size: 20pt;
user-select: none;
}
#offline > h1 {
margin: 0;
}
{% endif %}
</style>
</head>
<body>
2022-03-30 17:41:42 +09:00
{% if online %}
<video id="video" src="{{ url_for('stream', token=user.token) }}" autoplay controls></video>
{% else %}
2022-07-28 19:48:33 +09:00
<header id="offline"><h1>{{ locale.offline }}</h1></header>
2022-03-30 17:41:42 +09:00
{% endif %}
</body>
</html>