-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (106 loc) · 3.2 KB
/
index.html
File metadata and controls
129 lines (106 loc) · 3.2 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
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>MUSE-HLP-CENTER</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f4f4;
}
.container {
display: flex;
height: 100vh;
}
/* 左侧内容 */
.left-panel {
width: 40%;
background: #ffffff;
padding: 40px;
box-sizing: border-box;
border-right: 1px solid #ddd;
display: flex;
align-items: center;
justify-content: center;
}
.left-panel .text-box {
font-size: 20px;
line-height: 34px;
color: #333;
padding: 30px;
border: 2px solid #bbb;
background: #fafafa;
border-radius: 8px;
}
/* 右侧区域 */
.right-panel {
width: 60%;
display: flex;
flex-direction: column;
padding: 40px;
box-sizing: border-box;
}
.section {
background: #ffffff;
border: 1px solid #ddd;
padding: 25px;
margin-bottom: 25px;
border-radius: 8px;
}
.section h2 {
margin-top: 0;
}
.link-box {
margin-top: 15px;
}
.link-box a {
display: block;
margin-bottom: 10px;
text-decoration: none;
color: #0366d6;
font-size: 17px;
}
.link-box a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<!-- 左边 -->
<div class="left-panel">
<div class="text-box">
可以通过提交错误的方式直接创建一个账户,账户信息会发送至您的预留邮箱。
</div>
</div>
<!-- 右边 -->
<div class="right-panel">
<!-- 登录 / 重置密码 -->
<div class="section">
<h2>账户登录 & 重置密码</h2>
<div class="link-box">
<a href="https://muse-help.youtrack.cloud/" target="_blank">👉 登录 YouTrack Helpdesk</a>
<a href="https://muse-help.youtrack.cloud/hub/auth/restore?response_type=token&client_id=3618ffa8-7918-424a-81d4-d8be310c1926&redirect_uri=https:%2F%2Fmuse-help.myjetbrains.com%2Foauth&scope=3618ffa8-7918-424a-81d4-d8be310c1926%20Upsource%20TeamCity%20YouTrack%2520Slack%2520Integration%200-0-0-0-0&state=a804205c-13fe-463d-b4b6-943b846369c4"
target="_blank">👉 重置密码</a>
</div>
</div>
<!-- 提交错误报告 -->
<div class="section">
<h2>提交错误报告</h2>
<div class="link-box">
<a href="https://muse-help.youtrack.cloud/form/dc797eed-4bbd-47e1-9b90-e726457833dc"
target="_blank">🛠 软件类错误</a>
<a href="https://muse-help.youtrack.cloud/form/05ef384a-df26-4101-bd1e-0b41495d8b63"
target="_blank">🔑 许可服务类错误</a>
<a href="https://muse-help.youtrack.cloud/form/52e9d45c-8694-41f6-b3c0-a7bc51e1b5bd"
target="_blank">📄 普通类型错误</a>
</div>
</div>
<div>
<script id="dc797eed-4bbd-47e1-9b90-e726457833dc" data-yt-url="https://muse-help.youtrack.cloud" src="https://muse-help.youtrack.cloud/static/simplified/form/form-entry.js" data-theme="light" data-lang="zh"></script>
</div>
</div>
</div>
</body>
</html>