-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (79 loc) · 2.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<!--
Check-Kun
Copyright (c) 2022~Present Nakatai.
This software is released under the Apache-2.0 License.
https://opensource.org/licenses/mit-license.php
This software used "bootstrap" and "platform.js"
and their software available under "MIT license".
-->
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>アクセス環境表示ツール</title>
<link rel="stylesheet" href="css/reset.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link href="/css/style.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/platform/1.3.6/platform.min.js"></script>
<script src="https://ipinfo.io/?callback=callback"></script>
<script src="./js/pfmchk.js"></script>
</head>
<body>
<a href="/">
<h1 class="text-info my-4">
アクセス環境表示ツール
</h1>
</a>
<p>
アクセスされている環境を表示します。
<br>
<strong>
サーバー側に情報は流出しません。
</strong>
</p>
<noscript>
<p class="plzusejs">
このサイトでは<a href="https://w.wiki/3EDd">JavaScript</a>を使用しています。<br>
当サイトのコンテンツを表示するには、JavaScriptを有効にしてください。
</p>
</noscript>
<form mb="4" id="form">
<input type="button" class="btn btn-outline-danger active" value="表示更新" onclick="Dainyu();">
</form>
<div class="out">
<div id="1line"></div>
<div id="ip"></div>
<div id="accessfrom"></div>
<div id="resolution"></div>
<div id="browser"></div>
<div id="os"></div>
<div id="engine"></div>
<div id="fordevua"></div>
</div>
<footer>
Create by <a href="https://nakatai.xyz">Nakatai</a>.<br>
This software used
<a href="https://github.com/bestiejs/platform.js">
platform.js
</a> ,
<a href="https://getbootstrap.jp/">
bootstrap
</a> and
<a href="https://ipinfo.io/">
ipinfo.io
</a>.
<br>
<a href="https://github.com/Nakatai-0322/Check-Kun">
GitHub Source
</a> /
<a href="https://github.com/Nakatai-0322/Check-Kun/issues">
Issue
</a><br>
<a href="https://github.com/Nakatai-0322/Check-Kun/actions/workflows/pages/pages-build-deployment">
<img src="//github.com/Nakatai-0322/Check-Kun/actions/workflows/pages/pages-build-deployment/badge.svg?branch=main" alt="ビルド状況のバッジ">
</a>
</footer>
</body>
</html>