1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-01 22:53:29 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
bookshelfplus/bookshelfplus-frontend/views/feedback.html

162 lines
5.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%- include("./component/header.html"); %>
<style>
* {
margin: 0;
padding: 0;
}
.wrap {
margin: 20px auto;
position: relative;
}
label {
height: 25%;
text-align: center;
line-height: 30px;
margin-right: 20px;
}
label:last-child {
margin-right: 0;
}
label>div {
width: 100%;
height: 400px;
position: absolute;
left: 0;
top: 31px;
background: #eeeeee;
display: none;
}
input:checked+div {
display: block;
}
.main {
min-height: max-content;
}
.footer {
margin-top: calc(400px + 10vh) !important;
}
.click2copy {
cursor: pointer;
user-select: all;
}
p {
font-size: 14px !important;
font-family: initial !important;
}
</style>
</head>
<body>
<%- include("./component/navbar.html"); %>
<main class="main">
<h1><%= headText %></h1>
<div id="container">
<p>
<br>反馈前请选择正确的分类,否则反馈经过二次转接,响应时间将会变长。
</p>
<div class="wrap">
<label>
<input type="radio" name="tab">版权投诉
<div>
<p>
<br>
</p>
<p>
版权问题请发送邮件至 <span class="click2copy">2291200076@qq.com</span>,并请在标题前注明<b class="click2copy">【加急丨书栖网丨版权投诉】</b>
</p>
<p>
(版权投诉与其他反馈邮箱不同,请注意)
</p>
<p>
<br>
</p>
<p>
实在抱歉对您造成了困扰版权投诉我们将会优先加急处理最迟会在3个工作日内以邮件形式回复至您的发件邮箱中届时若您未收到相关邮件烦请检查下是否被归垃圾邮件。
</p>
</div>
</label>
<label>
<input type="radio" name="tab" checked>下载链接失效
<div>
<p>
<br>
</p>
<p>
请点击链接旁的 <img src="/assets/image/svg/feedback.svg" style="width: 1em; height: 1em;"/> 按钮进行反馈。
</p>
</div>
</label>
<label>
<input type="radio" name="tab">合作
<div>
<p>
<br>
</p>
<p>
如需合作,请发送邮件至 <span class="click2copy">admin@only4.work</span>,并在标题前注明<b class="click2copy">【书栖网丨合作】</b>
</p>
<p>
<br>
</p>
<p>
ps: 本站谢绝一切形式的商业合作,所有的合作都是建立在免费、无偿的基础上,望理解。
</p>
</div>
</label>
<label>
<input type="radio" name="tab">意见建议、其他
<!-- <div>
<p>
此处仅支持纯文字反馈,如果需要添加图片或其他附件,请发送邮件至 <span class="click2copy">admin@only4.work</span>
</p>
<textarea style="width: 100%; height: 87.5%;">请输入...</textarea>
<div style="width: 100%; display: grid; place-items: center;">
<input type="button" value="提交" style="width: 100px; height: 30px;">
</div>
</div> -->
<div>
<p>
<br>
</p>
<p>
请发送邮件至 <span class="click2copy">admin@only4.work</span>,并在标题前注明<b class="click2copy">【书栖网丨意见建议】</b>
</p>
</div>
</label>
</div>
</div>
</main>
<%- include("./component/footer.html"); %>
<!-- 获取参数 -->
<script src="/assets/javascripts/getParams.js"></script>
<!-- 点击复制及反馈样式 -->
<script src="/assets/javascripts/cssUtils.js"></script>
<script>
var requestParams = getParams();
// var searchbox = document.getElementById("searchInput");
// var categoryId = requestParams["id"] ?? "";
// console.log("categoryId", categoryId);
</script>
<script>
// 点击复制
$(".click2copy").click(function (e) {
copyToClipboard($(this).text());
showTip(e, "复制成功");
});
</script>
</body>
</html>