Files
vps_web/templates/forum/post_form.html
ddrwode 5fe60fdd57 哈哈
2026-02-09 22:36:32 +08:00

46 lines
1.8 KiB
HTML

<!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/css/style.css">
<link rel="stylesheet" href="/static/css/forum.css">
</head>
<body>
<header class="forum-topbar">
<div class="forum-topbar-inner">
<a href="{{ url_for('index') }}" class="forum-brand">VPS Price</a>
<nav class="forum-nav">
<a href="{{ url_for('forum_index') }}">论坛首页</a>
<span class="forum-user">当前用户:{{ current_user.username }}</span>
<a href="{{ url_for('user_logout') }}">退出</a>
</nav>
</div>
</header>
<main class="forum-main">
<section class="forum-section">
<h1>发布新帖</h1>
{% if error %}
<p class="form-error">{{ error }}</p>
{% endif %}
<form method="post" action="{{ url_for('forum_post_new') }}" class="post-form">
<div class="form-group">
<label for="title">标题</label>
<input id="title" name="title" type="text" required maxlength="160" value="{{ title_val or '' }}">
</div>
<div class="form-group">
<label for="content">正文</label>
<textarea id="content" name="content" required rows="10">{{ content_val or '' }}</textarea>
</div>
<div class="form-actions">
<button type="submit" class="forum-btn">发布</button>
<a href="{{ url_for('forum_index') }}" class="forum-btn forum-btn-ghost">取消</a>
</div>
</form>
</section>
</main>
</body>
</html>