summaryrefslogtreecommitdiff
path: root/tutorial_9_create_login
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial_9_create_login')
-rw-r--r--tutorial_9_create_login/slides.md36
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