mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
11 lines
162 B
Python
11 lines
162 B
Python
|
from django.contrib.auth.views import LoginView, LogoutView
|
||
|
|
||
|
|
||
|
class Login(LoginView):
|
||
|
|
||
|
template_name = "auth/login.html"
|
||
|
|
||
|
|
||
|
class Logout(LogoutView):
|
||
|
pass
|