diff options
author | ankitjavalkar | 2017-05-12 17:44:13 +0530 |
---|---|---|
committer | GitHub | 2017-05-12 17:44:13 +0530 |
commit | bf328b6f136b20567801c898cafd6f3d744ef340 (patch) | |
tree | b10154b2a8368e3f14b6b1a22cd030a99465cccd /tutorial_1_intro | |
parent | eea50503e49aa440a8ba92b6b8269aca67498df5 (diff) | |
download | learn_django-bf328b6f136b20567801c898cafd6f3d744ef340.tar.gz learn_django-bf328b6f136b20567801c898cafd6f3d744ef340.tar.bz2 learn_django-bf328b6f136b20567801c898cafd6f3d744ef340.zip |
Create slide_2.md
Diffstat (limited to 'tutorial_1_intro')
-rw-r--r-- | tutorial_1_intro/slide_2.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tutorial_1_intro/slide_2.md b/tutorial_1_intro/slide_2.md new file mode 100644 index 0000000..29c6e25 --- /dev/null +++ b/tutorial_1_intro/slide_2.md @@ -0,0 +1,11 @@ +**What is a Web Framework** + +Narration: + +When building a web application, we need to take care of number of things. + - How to implement basic security measures like login + - How the web application will interact with databases to store information + - How will the HTML pages be rendered + - and many more + +A lot of these situations can be handled by a programmer by coding his own solutions, but that would take a lot of time and effort on his behalf. Web frameworks provide these basic features out-of-the-box. |