-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticket.html
139 lines (124 loc) · 3.04 KB
/
ticket.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
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="/images/favicon.png" />
<link rel="stylesheet" href="/css/bootstrap.min.css">
<title>ActionView - 演示用户</title>
<style type="text/css">
body {
margin: 0px;
padding: 0px;
font-family: Helvetica Neue,Helvetica,Arial,Hiragino Sans GB,Hiragino Sans GB W3,Microsoft YaHei,sans-serif;
}
.doc {
padding: 80px 0 80px 0;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
.common-action {
margin-top: 40px;
text-align: center;
}
.index-banner-action-btn {
display: inline-block;
padding: 14px 50px;
background: #5cb85c;
color: #fff;
border-radius: 3px;
font-size: 16px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.index-banner-action-btn:hover {
background: #018b61;
}
h2 {
text-align: center;
margin-bottom: 30px;
}
a {
text-decoration: none;
}
a:hover {
color: #fff;
text-decoration: none;
}
</style>
</head>
<body>
<div class='doc'>
<div class='container'>
<h2>演示用户</h2>
<table class='table table-bordered table-hover' style='text-align:center'>
<thead>
<tr>
<th style='text-align:center'>角色</th>
<th style='text-align:center'>用户</th>
<th style='text-align:center'>登录名/密码</th>
</tr>
</thead>
<tbody>
<tr>
<td>项目经理</td>
<td>红中</td>
<td>hongzhong/actionview</td>
</tr>
<tr>
<td>开发经理</td>
<td>一饼</td>
<td>yibing/actionview</td>
</tr>
<tr>
<td>开发人员</td>
<td>二饼<br/>三饼<br/>四饼</td>
<td>erbing/actionview<br/>sanbing/actionview<br/>sibing/actionview</td>
</tr>
<tr>
<td>测试经理</td>
<td>幺鸡</td>
<td>yaoji/actionview</td>
</tr>
<tr>
<td>测试人员</td>
<td>二条<br/>三条<br/>四条</td>
<td>ertiao/actionview<br/>santiao/actionview<br/>sitiao/actionview</td>
</tr>
<tr>
<td>系统管理员</td>
<td>******</td>
<td>******</td>
</tr>
</tbody>
</table>
<div style='color: red'>
⚠ 如果您登录后拥有项目管理配置权限,建议不要对项目配置做任何改变,以免影响他人试用。<br/>
</div>
<div class='common-action'>
<a href='http://www.actionview.cn:8080' class='index-banner-action-btn'>进 入 > ></a>
</div>
</div>
</div>
</body>
</html>