You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.4 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>联系我们</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
main {
padding: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
margin-bottom: 15px;
}
.feedback-form {
margin-top: 20px;
}
.feedback-form label {
display: block;
margin-bottom: 5px;
}
.feedback-form input[type="text"],
.feedback-form textarea {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}
.feedback-form input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 15px;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<main>
<form class="feedback-form" action="/submit_feedback" method="POST">
<label for="feedback-subject">反馈主题:</label>
<input type="text" id="feedback-subject" name="subject" required>
<label for="feedback-content">反馈内容:</label>
<textarea id="feedback-content" name="content" required></textarea>
<input type="submit" value="提交反馈">
</form>
</main>
</body>
</html>