Django Chat App - Realtime Chat Tutorial - Tailwind CSS - Part 2

preview_player
Показать описание
Use Python Django and Tailwind CSS to build a real time chat application. This is part 2 of 4, and in this part we are going to make it possible to sign up, log in and log out.

The design is built using Tailwind CSS, so you will be able to learn a little bit about that as well.

---

Code With Stein Premium

Support me

Important links

---

#codewithstein #django #tailwindcss #djangochat
Рекомендации по теме
Комментарии
Автор

Seriously, you'r tutorials on Django + some framework are F*cking awesome, and pretty sure they are the best online (including the paid once on different websites like udemy), I've done tons of them, but when you are releasing a new course, it's always like "fk yeah, im gonn learn something new", and it's always is, and somehow its always on time, when I'm intrested in something.

Amazing, thank you so much.

slavabugz
Автор

You are Awesome, , Thank you, Waiting for third part on this Django Chat App.

VikashSinghkumar
Автор

11:51 when i try to logout i get this error
ERROR Method Not Allowed: /logout/
"GET /logout/ HTTP/1.1" 405 0
NOTE (django==5.0)

maro_xd
Автор

Hey brother! I checked the series out, a minor correction in the login template. The login errors are considered as non field. so the logic needs to change to this :
{% if form.errors %}
{% for error in form.non_field_errors %}
<div class="mb-5 p-4 rounded-xl bg-red-500 text-white">
<p>{{error}}</p>
</div>
{% endfor %}
{% endif %}

kashaxx
Автор

I am trying to implement live chat to my application and this has been really helpful. Thank you for this, you are the best. When can we expect part 3 and 4?

erik
Автор

data is not saving in the sqlite3 database when trying to signup

sugandhamalhotra