8 lines
250 B
Python
8 lines
250 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.forms import PasswordChangeForm
|
|
from django.contrib.auth.views import PasswordChangeView
|
|
from django.urls import reverse_lazy
|
|
|
|
def home(request):
|
|
return render(request, 'home.html',{})
|