mirror of
https://github.com/tjsga/studyguides.git
synced 2025-04-05 03:40:16 -04:00
11 lines
211 B
Python
11 lines
211 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.views import LogoutView
|
|
|
|
# Create your views here.
|
|
|
|
def login(request):
|
|
return render(request, "auth/login.html")
|
|
|
|
logout = LogoutView.as_view()
|
|
|