-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathno.html
More file actions
51 lines (47 loc) · 1.47 KB
/
no.html
File metadata and controls
51 lines (47 loc) · 1.47 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js"
integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+"
crossorigin="anonymous"></script>
<!-- 跳轉頁面 content是秒數-->
<!--<meta http-equiv="refresh" content="3; url=http://localhost:3000">-->
<a class="button" href="#" rel="external nofollow" onclick="self.location=document.referrer;"><i class="fas fa-home fa-2x"></i></a>
<style type="text/css">
.button{
position: relative;
top: 10px;
left:10px;
color:#495057;
}
.button:hover{
opacity: 0.8;
}
#main{
padding: 70px;
}
#error{
color: red;
font-size: 100px;
padding:20px;
}
font{
font-family: Microsoft JhengHei;
font-size: 25px;
}
</style>
</head>
<body>
<div id="main">
<center>
<i id="error" class="fas fa-exclamation-circle"></i><br>
<font>交易失敗</font><br>
<font>庫存不足</font>
</center>
</div>
<script>
$('.button1').click = function(){self.location=document.referrer;};
</script>
</body>
</html>