@Bobobobob 站长不认同匿名模式,所以主要发展的会是bbs模式。当然不排除以后会加入可选的匿名模块
另外首页只显示标题没有正文的问题可能也会尝试修补,不过这是一个纯前端问题
@Bobobobob 站长不认同匿名模式,所以主要发展的会是bbs模式。当然不排除以后会加入可选的匿名模块
另外首页只显示标题没有正文的问题可能也会尝试修补,不过这是一个纯前端问题
function validatePassword(password, password_confirm) {
const password_notify = $('#password-notify');
const password_confirm_notify = $('#password-confirm-notify');
try {
utils.assertPasswordValidity(password, zxcvbn);
if (password === $('#username').val()) {
throw new Error('您的密码与用户名相同,请选择另外的密码。');
}
showSuccess(password_notify, successIcon);
} catch (err) {
showError(password_notify, err.message);
}
if (password !== password_confirm && password_confirm !== '') {
showError(password_confirm_notify, '两次输入的密码必须相同!');
}
}
This is what a topic and post looks like. As an administrator, you can edit the post's title and content.
To customise your forum, go to the Administrator Control Panel. You can modify all aspects of your forum there, including installation of third-party plugins.