Tag: Django Authentication
Django comes with a Built-In Authentication System. It can handle user Authentication and Authorization. It verifies who is the user and what are the rights and permission to the user. Using Django Authentication System we can build User Sign Up Registration Module, Login Logout Web App, Restrict User to View, Password Reset and Change, Groups and Permissions. You can also extend user authentication model.
Post Method In Django REST Framework
Last updated on 20th December 2022 by Madderla Saikumar | Category: Django Tutorial
Django REST framework (DRF) is a powerful and flexible toolkit for building web APIs. In this tutorial, we’ll learn how to build a CRUD API in just 15 minutes using the Django REST framework. To build our sample to-do list application, we’ll start by setting up the Django REST framework in a Django project, followed […]
Admin Page Customization In Django
Last updated on 12th December 2022 by Madderla Saikumar | Category: Django Tutorial
The Django framework comes with a powerful administrative tool called admin. You can use it out of the box to quickly add, delete, or edit any database model from a web interface. But with a little extra code, you can customize the Django admin to take your admin capabilities to the next level In this tutorial we are going […]
How to enable 2FA in the Django admin
Last updated on 15th November 2022 by Madderla Saikumar | Category: Django Tutorial
Now a days everyone has a smartphone, this type of 2FA setup is basically now free and accessible to everyone. You can easily install a 2FA client app like Google Authenticator or Twilio Authy on your phone. Many websites also now support it and will probably become more and more common as it does improve security significantly. On the server […]
How to add reCAPTCHA in Django Site
Last updated on 4th July 2022 by Madderla Saikumar | Category: Django Tutorial
Using Google reCAPTCHA in Django forms is one of the best way to prevent DOS attack in your Django application. Although you may deploy other measures like blocking user after 3 unsuccessful attempts or blocking the IP address but I think reCAPTCHA is one of the most widely used method to stop bots from attacking […]
How to Add Gmail Log-In in Django
Last updated on 20th November 2021 by [email protected] | Category: Django Tutorial
There are many websites which offer login using google instead of forcing you to create a new account over there website. You must also want to implement the same feature like that in your website so, you are at the right place. In this blog we will learn how to add Gmail Log-In in your […]
Protect Django Project From Getting Attacked
Last updated on 22nd November 2021 by [email protected] | Category: Django Tutorial
In this tutorial we will learn how to your protect django settings.py file of your project from being subjected to any attack. You can also find the code on GitHub. So, let’s start. Setting up Django Project We will first create a Django Project. You can refer our previous blogs in order to create a […]
How to restrict access with Django login required decorator function?
Last updated on 11th June 2021 by [email protected] | Category: Django Tutorial
Creating a website is fun, but a login restrictor in your website will make it look more secure. Django REST Framework is a robust and flexible toolkit for building Web APIs. The Django login required decorator provide the feature to restrict the accessWe have often visited websites in which we need to log in first […]
Email and Social Login using Django
Last updated on 22nd November 2021 by [email protected] | Category: Django Tutorial
Hello everyone, here is my first blog in which I am going to give you a full guide on how you can manage user authentication and authorization in django. Well django is popularly known for how it makes things easier for us, so this tutorial is also going to be super easy for you guys. […]
Django Automated Email Template After User Registration
Last updated on 5th August 2022 by [email protected] | Category: Django Tutorial
Learn How to send Html Template mails after user registration. This tutorial will explain how to config “from mail” and how to use an HTML template. As mail content(body). You’ll also learn how to make user registration in Django. Django Automated Template Email, After User Registration. full tutorial. Configuring the email in Settings.py Django Django […]
How to create more than one user SignUp in Django?
Last updated on 11th June 2021 by [email protected] | Category: Django Tutorial
We have often visited websites such as school websites, banking websites and so on, where there are different signup forms for different users. We came across some of our projects in which we wonder how to create more than one user signup in django ?, because in Django we know that there is only one […]