38 lines
1.1 KiB
HTML
38 lines
1.1 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>{% block title %}星笺{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
{% block nav %}
|
|
<nav class="navbar">
|
|
<a href="/dashboard" class="nav-brand">📮 星笺</a>
|
|
<div class="nav-links">
|
|
{% if user is defined and user %}
|
|
<a href="/profiles">Profile</a>
|
|
<a href="/settings">设置</a>
|
|
{% if user.is_admin %}
|
|
<a href="/admin/invites">邀请码管理</a>
|
|
{% endif %}
|
|
<a href="/logout" class="nav-logout">退出</a>
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
{% endblock %}
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
<script>
|
|
// Auto-trim whitespace from all text inputs and textareas on form submit
|
|
document.addEventListener('submit', function(e) {
|
|
e.target.querySelectorAll('input[type="text"], textarea').forEach(function(el) {
|
|
el.value = el.value.trim();
|
|
});
|
|
}, true);
|
|
</script>
|
|
</html>
|