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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
<?php require_once ("../webadmin/configure.php");
if(!isset($_SESSION["successful_reg"])){ echo '<script type="text/javascript"> top.location.href="index.php"; </script>';
exit; }else{ unset($_SESSION["successful_reg"]); } ?>
<?php if($_SESSION["langcode"] == "tc"){ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="images/favicon.ico" type="image/vnd.microsoft.icon"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="copyright" content="EIZO Corporation. All Rights Reserved."/> <meta http-equiv="Content-Style-Type" content="text/css"/> <meta http-equiv="Content-Script-Type" content="text/javascript"/>
<meta name="description" content="Eizo Nanao Corporation Global Site"/> <meta name="keywords" content=""/> <title> 登記成功 | EIZO</title>
</head> <body id="hongkong_warranty_bg">
<link href="css/language_<?=$_SESSION["langcode"]?>.css" rel="stylesheet"> <link href="css/warranty_style.css" rel="stylesheet"> <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<div id="header"> <a href="index.php"> <img src="images/logo.jpg" style="height: inherit;"/> </a> </div>
<div style="margin-top: 10px;text-align: right;"> 繁體中文 | <a href="change_language.php?langcode=en&page=successful_registration">English</a> </div>
<div style="margin-top: 60px;"> <a href="index.php">主頁</a> > 登記成功 </div>
<div class="head_title"> 登記成功 </div>
<div id="content">
<div class="clearfix" id="center" style="padding: 0;"> <div id="main-w"> 恭喜!你已成功完成網上保養登記,並將於24小時內收到確認電郵。<br><br> 如你於上述時間仍未收到確認電郵,請透過<a href="mailto:info@eizo.com.cn">info@eizo.com.cn</a> 聯絡我們。<br><br> 如欲查詢保養狀態紀錄,請按<a href="index.php">這裡</a>。
</div> </div> </div>
<div style="height: 80px;"></div>
</body> </html>
<?php }else{ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="images/favicon.ico" type="image/vnd.microsoft.icon"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="copyright" content="EIZO Corporation. All Rights Reserved."/> <meta http-equiv="Content-Style-Type" content="text/css"/> <meta http-equiv="Content-Script-Type" content="text/javascript"/>
<meta name="description" content="Eizo Nanao Corporation Global Site"/> <meta name="keywords" content=""/> <title> Registration Successfully | EIZO</title>
</head> <body id="hongkong_warranty_bg">
<link href="css/language_<?=$_SESSION["langcode"]?>.css" rel="stylesheet"> <link href="css/warranty_style.css" rel="stylesheet"> <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<div id="header"> <a href="index.php"> <img src="images/logo.jpg" style="height: inherit;"/> </a> </div>
<div style="margin-top: 10px;text-align: right;"> <a href="change_language.php?langcode=tc&page=successful_registration">繁體中文</a> | English </div>
<div style="margin-top: 60px;"> <a href="index.php">Home</a> > Registration Successfully </div>
<div class="head_title"> Registration Successfully </div>
<div id="content">
<div class="clearfix" id="center" style="padding: 0;"> <div id="main-w">
Congratulations! You have successfully registered the warranty online, a confirmation email will be issued within 24 hours to the address specified. <br><br> If you do not receive your confirmation email within the time periods mentioned above, please contact us by <a href="mailto:info@eizo.com.cn">info@eizo.com.cn .</a><br><br>
If you would like to check the status of your warranty, please click <a href="index.php">here</a>.
</div> </div> </div>
<div style="height: 80px;"></div>
</body> </html> <?php } ?>
|