Skip to Content
Cloud Native Python
book

Cloud Native Python

by Manish Sethi
July 2017
Intermediate to advanced
374 pages
8h
English
Packt Publishing
Content preview from Cloud Native Python

Creating application users

Before we start writing our web page, we need to create a route to create a user, as follows:

    from flask import render_template 

    @app.route('/adduser') 
    def adduser(): 
     return render_template('adduser.html') 

Now that we have created the route, let's create a form in adduser.html, which will ask for the required information related to the user and help them submit the information:

 <html> <head> <title>Twitter Application</title> </head> <body> <form > <div class="navbar"> <div class="navbar-inner"> <a class="brand" href="#">Tweet App Demo</a> </div> </div> <div id="main" class="container"> <table class="table table-striped"> Name: <input placeholder="Full Name of user" type "text"/> </div> <div> Username: <input ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python for DevOps

Python for DevOps

Noah Gift, Kennedy Behrman, Alfredo Deza, Grig Gheorghiu
Cloud Native

Cloud Native

Boris Scholl, Trent Swanson, Peter Jausovec

Publisher Resources

ISBN: 9781787129313Supplemental Content