Give me the code of a web page project using Django frameworks, the page must have a login and user registration with their respective stylesheets, use virtual environments. The project should have the name "3ro_info_A_CERCADO_Y_SÁNCHEZ".
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.contrib.auth.decorators import login_required from django.http import HttpResponse from django.shortcuts import render from django.utils.decorators import method_decorator from django.views.generic import TemplateView # Create your views here. @method_decorator(login_required, name='dispatch') class HomeView(TemplateView): template_name = 'home.html'