Archive
Blog Archives
Creating a Login Page in Django
In this tutorial we are going to build a simple login using Django Framework. Above photo is exactly how our app will look like when completed, so let’s get started. Note: The codes in this tuturial was developed using Django v1.10.6, it may not work with older versions. Create the base template mymodule/templates/mymodule/base.html: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152<!DOCTYPE html> […]