You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
326 B
Python
12 lines
326 B
Python
from django.shortcuts import render
|
|
from django.urls import reverse_lazy
|
|
from django.views.generic import TemplateView, FormView
|
|
|
|
from users.forms import LoginForm
|
|
|
|
|
|
# Create your views here.
|
|
class LoginView(FormView):
|
|
template_name = 'logintest.html'
|
|
success_url = reverse_lazy('dashboard')
|
|
form_class = LoginForm |