-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemberCenter.aspx
More file actions
57 lines (50 loc) · 1.98 KB
/
memberCenter.aspx
File metadata and controls
57 lines (50 loc) · 1.98 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
52
53
54
55
56
57
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MemberCenter.aspx.cs" Inherits="MemberCenter" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<link href="Content/bootstrap.css" rel="stylesheet" />
<link href="css/member.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<title></title>
</head>
<body>
<div id="top">
<div id="top_l">會員中心</div>
<div id="search"><a href="#">
<img src="images/search.png" alt="搜尋" /></a></div>
</div>
<div class="content">
<div class="container">
<a href="Member_Update.aspx" class="btn btn-primary">更改密碼</a>
<a href="" class="btn btn-primary">查看紅利點數</a>
<a href="" class="btn btn-primary">問題反應</a>
</div>
</div>
<div id="nav">
<div class="nav_icon">
<a href="index.html">
<img src="images/nav_icon1.png" width="32" height="30" alt="首頁" />
<em class="icon_text">首頁</em></a>
</div>
<div class="nav_icon">
<a href="like.html">
<img src="images/nav_icon2.png" width="32" height="30" alt="收藏" />
<em class="icon_text">收藏</em></a>
</div>
<div class="nav_icon">
<a href="member.html">
<img src="images/nav_icon3.png" width="32" height="30" alt="會員" />
<em class="icon_text">會員</em></a>
</div>
<div class="nav_icon">
<a href="set.html">
<img src="images/nav_icon4.png" width="32" height="30" alt="設定" />
<em class="icon_text">設定</em></a>
</div>
</div>
<script src="Scripts/bootstrap.min.js"></script>
<script src="Scripts/jquery-2.1.4.min.js"></script>
</body>
</html>