Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Django Authentication Authentication LoginView

Bernardo Augusto García Loaiza
PLUS
Bernardo Augusto García Loaiza
Courses Plus Student 792 Points

My challenge tasks does not works? [SOLVED]

Hi, I am perform this challenge tasks, and when I arrive to the task 2, I try answer these task, and the message that I get is:

"Oops! It looks like Task 1 is no longer passing."

Constantly I get this message in some tasks challenges in other chapters or topics ..

What mean this? Best Regards

accounts/urls.py
from django.conf.urls import url, include

from . import views

urlpatterns = [
    url(r'^', include('django.contrib.auth.urls')),
]
templates/registration/login.html
{% extends "layout.html" %}
{% load bootstrap3 %}

{% block title_tag %}Login | {{ block.super }}{% endblock %}

{% block body_content %}
<div class="container">
    <h1>Log into your account</h1>
    <form method="POST">
        {% csrf_token %}
        {% bootstrap_form form %}
        <input type="submit" value="Login" class="btn btn-default"> 
    </form>  
</div>
{% endblock %}
Bernardo Augusto García Loaiza
Bernardo Augusto García Loaiza
Courses Plus Student 792 Points

I already fixed. Django check the task without use bootstrap3 application in the form The code section is:

<h1>Log into your account</h1>
    <form method="POST">
        {% csrf_token %}
        {{ form.as_p }}
        <input type="submit" value="Login"> 
    </form>