-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
131 lines (131 loc) · 4.65 KB
/
profile.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
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/signin.css">
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico" />
<title>扬华SMS-个人中心</title>
</head>
<body class="fix-top">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">扬华SMS</a>
</div>
<div class="collapse navbar-collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li><a href="console.html">控制台</a></li>
<li><a href="notice_manage.html">通知</a></li>
<li><a href="fresh_manage.html">招新管理</a></li>
<li><a href="member_manage.html">成员管理</a></li>
<li><a href="send_log.html">历史记录</a></li>
<li class="active"><a href="profile.html">个人中心</a></li>
<li><a href="send_log.html">退出登录</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="panel panel-default">
<div class="panel-body">
<div class="btn-group btn-group-lg" role="group" aria-label="">
<button type="button" class="btn btn-default" data-target="#edit-info-modal" data-toggle="modal">编辑信息</button>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-stats" aria-hidden="true"></span>
<label>个人信息</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>用户名</th>
<th>姓名</th>
<th>电话号码</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">catfish</a></td>
<td>aaa</td>
<td>18612341234</td>
</tr>
</tbody>
</table>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-scale" aria-hidden="true"></span>
<label>参与部门</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>部门名</th>
<th>权限</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">扬华E媒体</a></td>
<td>管理员</td>
<td>
<div class="btn-group btn-group-sm" role="group" aria-label="">
<button type="button" class="btn btn-default btn-edit">退出</button>
</div>
</td>
</tr>
<tr>
<td><a href="#">园区</a></td>
<td>管理员</td>
<td>
<div class="btn-group btn-group-sm" role="group" aria-label="">
<button type="button" class="btn btn-default btn-edit">退出</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="modal fade" id="edit-info-modal" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">编辑信息</h4>
</div>
<div class="modal-body">
<label class="form-control">catfish</label>
<input type="text" placeholder="请输入姓名" class="form-control" value="1">
<input type="text" placeholder="请输入电话号码" class="form-control" value="2">
<div class="alert alert-success alert-dismissible" role="alert">
<strong>Success!</strong> Better check yourself, you're not looking too good.
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
<button type="button" class="btn btn-primary">确定</button>
</div>
</div>
</div>
</div>
</body>
</html>