Add IntelliJ IDEA project configuration files

This commit adds IntelliJ IDEA-specific configuration files for the project, including module setup, version control integration, inspection profiles, and workspace settings. These files facilitate development environment configuration for contributors using IntelliJ IDEA.
This commit is contained in:
2025-06-26 15:54:51 +03:00
parent 21800ea5e3
commit af8444c0e3
10 changed files with 1172 additions and 10 deletions
+5
View File
@@ -0,0 +1,5 @@
from django.forms import forms
class LoginForm(forms.Form):
field_order = ['username', 'password']
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from users import views
urlpatterns = [
path('login/', views.LoginView.as_view(), name='login'),
]