Skip to content

Commit 51b3596

Browse files
committed
adding new flask resource
1 parent 3ff0241 commit 51b3596

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

all.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,11 @@ <h2>Flask resources</h2>
637637
with
638638
<a href="http://flask.pocoo.org/docs/deploying/wsgi-standalone/">standalone WSGI containers</a>.</p>
639639
</li>
640+
<li>
641+
<p><a href="https://realpython.com/blog/python/handling-email-confirmation-in-flask/">Handling Email Confirmation in Flask</a>
642+
is a great walkthrough for a common use case of ensuring an email address
643+
matches with the user's login information.</p>
644+
</li>
640645
</ul>
641646
<h2>Open source Flask example projects</h2>
642647
<ul>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-12-28T12:18:17Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-12-28T12:40:09Z</updated></feed>

flask.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,11 @@ <h2>Flask resources</h2>
206206
with
207207
<a href="http://flask.pocoo.org/docs/deploying/wsgi-standalone/">standalone WSGI containers</a>.</p>
208208
</li>
209+
<li>
210+
<p><a href="https://realpython.com/blog/python/handling-email-confirmation-in-flask/">Handling Email Confirmation in Flask</a>
211+
is a great walkthrough for a common use case of ensuring an email address
212+
matches with the user's login information.</p>
213+
</li>
209214
</ul>
210215
<h2>Open source Flask example projects</h2>
211216
<ul>

source/content/pages/02-web-frameworks/0203-flask.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ book which is an excellent learning resource.
168168
with
169169
[standalone WSGI containers](http://flask.pocoo.org/docs/deploying/wsgi-standalone/).
170170

171+
* [Handling Email Confirmation in Flask](https://realpython.com/blog/python/handling-email-confirmation-in-flask/)
172+
is a great walkthrough for a common use case of ensuring an email address
173+
matches with the user's login information.
174+
171175

172176
## Open source Flask example projects
173177
* [Microblog](https://github.com/miguelgrinberg/microblog) is the companion

0 commit comments

Comments
 (0)