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
|
<!DOCTYPE html> <html lang="tc-HK" prefix="og: http://ogp.me/ns#">
<head> <title>Venuechain</title> <?php include 'inc/headlinks.php';?> <!-- slider --> <link rel="stylesheet" href="../css/lightslider.css"/> </head>
<body> <div class="wrapper"> <!-- header --> <?php include 'inc/header.php';?> <!-- end of header -->
<div class="subsection-grey" style="min-height:600px;"> <div class="container"> <div class="pagelocation"><a href="index.php">主頁</a> / <span class="active">我的帳戶</span></div> <div class="heading"> 我的帳戶 <div class="member"><img src="../img/myacct.png"> 陳大文</div> </div> <div class="row myact-container"> <div class="col-4"> <a href="myprofile.php" class="card fade"> <div class="option"> <i class="icon-myaccount-profile"></i> <h3>更改帳戶設定</h3> <p>更改你的電郵地址、密碼及其他設定</p> </div> </a> </div>
<div class="col-4"> <a href="mycard.php" class="card fade"> <div class="option"> <i class="icon-card"></i> <h3>管理付款卡</h3> <p>選擇首選付款卡並剛除過期信用卡</p> </div> </a> </div>
<div class="col-4"> <a href="myorders.php" class="card fade"> <div class="option"> <i class="icon-list"></i> <h3>我的訂單</h3> <p>管理即將前往的場地及查閱記錄</p> </div> </a> </div>
<div class="col-4"> <a href="myrecords.php" class="card fade"> <div class="option"> <i class="icon-point"></i> <h3>我的瀏覽紀錄</h3> <p>查看最近的搜尋和瀏覽紀錄</p> </div> </a> </div> <div class="clear"></div> </div> </div> </div>
<!-- footer --> <?php include 'inc/footer.php';?> <!-- end of footer --> </div>
<!-- JS --> <?php include 'inc/link-js.php';?>
</body>
</html>
|