This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
323 B
Python

from django.contrib.auth.forms import UserCreationForm
from django.urls import reverse_lazy
from django.views import generic
# need to make oauth facebook login
class SignUpView(generic.CreateView):
form_class = UserCreationForm
success_url = reverse_lazy('login')
template_name = 'registration/signup.html'