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.
21 lines
664 B
21 lines
664 B
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>发送消息</title>
|
|
<link rel="stylesheet" href="/static/login.css">
|
|
</head>
|
|
<body>
|
|
<div class="login">
|
|
<h2>发送消息</h2>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<h3>消息内容</h3>
|
|
<textarea id="message" name="message" rows="4" cols="50" required></textarea><br><br>
|
|
<h3>选择图片</h3>
|
|
<input type="file" id="photo" name="photo"><br><br>
|
|
<button type="submit" class="register-button">发送</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |