This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/users/views/auth.py
Andrew Godwin 34b24a0dcb More UI!
2022-11-13 16:15:14 -07:00

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