fix: huge refactor

This commit is contained in:
2026-03-17 14:03:51 +01:00
parent be87ab4fa1
commit 71b02610d1
50 changed files with 2763 additions and 3516 deletions
+1 -4
View File
@@ -24,10 +24,7 @@ class RegisterForm(StylingMixin, BaseUserCreationForm, SetPasswordMixin):
self.fields[field_name].required = True
self.fields[field_name].widget.attrs.update(
{
'class': 'my-2 bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg '
'focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 '
'dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 '
'dark:focus:border-primary-500'
'class': 'input w-full'
}
)