在Django中,可以通过自定义表单样式来设置UserCreationForm的错误样式。以下是一种常见的方法:
.error {
color: red;
font-weight: bold;
}
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'css/forms.css' %}">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<div class="error">
{{ form.errors }}
</div>
<button type="submit">Submit</button>
</form>
通过以上步骤,你可以在Django中设置UserCreationForm的表单错误样式。当表单验证失败时,错误信息将以红色粗体字显示在表单下方。请注意,这只是一种示例方法,你可以根据自己的需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云