-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
106 lines (106 loc) · 3.87 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ワンクリック詐欺体験</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
</head>
<body>
<div id="notification" class="notification" style="position: fixed; z-index: 1; width: 100%;">
<button id="delete" class="delete"></button>
※これは詐欺体験のためのページであり、請求内容は架空のものです。
</div>
<section class="hero is-warning">
<div class="hero-body">
<div class="container">
<div class="notification is-primary">
<p>写真を撮影しました</p>
</div>
<h1 class="title is-size-1">登録完了</h1>
<p class="is-size-4">お客様の会員登録が正常に完了しました。</p>
<p class="is-size-4 has-text-danger">期限内に<span class="is-size-3 has-text-weight-bold">98,000円</span>お支払い下さい。</p>
<div class="notification is-danger">
<p class="is-size-3 has-text-centered">
残り
<span id="hour">6</span>時間
<span id="min">0</span>分
<span id="sec">0</span>秒
</p>
<progress class="progress" max="100"></progress>
</div>
<p class="has-text-danger">お支払いが確認できない場合は<span class="has-text-weight-bold">法的処置</span>をとらせていただきますのでご注意下さい。</p>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 class="title">お客様情報</h2>
<table class="table is-striped is-fullwidth">
<tr>
<td>端末情報</td>
<td id="device"></td>
</tr>
<tr>
<td>登録日時</td>
<td id="date"></td>
</tr>
</table>
<h2 class="title">お問合せ</h2>
<table class="table is-striped is-fullwidth">
<tr>
<td>電話番号</td>
<td>0120-000-000</td>
</tr>
<tr>
<td>メールアドレス</td>
<td>info@example.com</td>
</tr>
</table>
<h2 class="title">お振込先</h2>
<table class="table is-striped is-fullwidth">
<tr>
<td>銀行名(銀行コード)</td>
<td>極道銀行(5910)</td>
</tr>
<tr>
<td>支店名(支店コード)</td>
<td>八草支店(893)</td>
</tr>
<tr>
<td>種別</td>
<td>普通預金</td>
</tr>
<tr>
<td>口座番号</td>
<td>5910696</td>
</tr>
</table>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js" integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/platform/1.3.6/platform.min.js"></script>
<script type="text/javascript">
// history.pushState(null, null, location.href);
// $(window).on('popstate', function(){
// history.go(1);
// });
const se = new Audio(
"https://dl.dropbox.com/s/pjf5iswhy43fc1f/camera-shutter3.mp3"
);
se.play();
let c = 6 * 60 * 60;
setInterval(() => {
$("#hour").text(Math.floor(c / 3600));
$("#min").text(Math.floor((c % 3600) / 60));
$("#sec").text(Math.floor(c % 60));
c = c - 1;
}, 1000);
$("#device").text(platform.description);
$("#date").text(new Date().toLocaleString("ja-JP"));
$("#delete").click(() => {
$("#notification").addClass("is-hidden")
});
</script>
</body>
</html>