diff options
author | ankitjavalkar | 2017-07-25 16:23:18 +0530 |
---|---|---|
committer | GitHub | 2017-07-25 16:23:18 +0530 |
commit | f77ed6057e775c50c04ca6c2d97a4ff820b9ef85 (patch) | |
tree | 223d4266b1907e13b1fef9aa31281de2321283c7 /tutorial_9_create_login | |
parent | c70fe1d8418281b2a56001df76fce96608adb558 (diff) | |
download | learn_django-f77ed6057e775c50c04ca6c2d97a4ff820b9ef85.tar.gz learn_django-f77ed6057e775c50c04ca6c2d97a4ff820b9ef85.tar.bz2 learn_django-f77ed6057e775c50c04ca6c2d97a4ff820b9ef85.zip |
Create slides.md
Diffstat (limited to 'tutorial_9_create_login')
-rw-r--r-- | tutorial_9_create_login/slides.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tutorial_9_create_login/slides.md b/tutorial_9_create_login/slides.md new file mode 100644 index 0000000..be6eb84 --- /dev/null +++ b/tutorial_9_create_login/slides.md @@ -0,0 +1,36 @@ +Slide 1 [00:08 | 00:08] +------------ +Title Slide +**Django Authentication** + +Slide 2 [00:12 | 00:20] +-------------- + +**Learning Objectives** + +In this tutorial, we will learn to; + - Create a new form + - Create a new view to handle form submission + +Slide 3 [00:11 | 00:31] +--------------- + +**System Requirements** + - Ubuntu 16.10 + - Python 3.5 or higher version + - python3.4-venv + +Slide 4: +---------------- + +**Introduction** + +- Let us use our knowledge of forms and templates to create a login system for our blog application +- We will use Django's inbuilt authentication system for this. + +Slide 5: +---------------- + +**Modify the urls.py** + +- Modify the urls.py file located in the ```blog``` directory |