Python, my first program where I tried to learn simple create update delete an application. Here I have learned how to work with GET method.
Get method is very easy to call without any difficulty you can call.
HTML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<html> <head> <title>FeedBack</title> </head> <body> {% if errors %} <ul> {% for error in errors %} <li>{{error}}</li> {% endfor %} </ul> {% else %} <p>You searched for: <strong>{{ q }}</strong></p> {% endif %} <h1>Search</h1> <form action="/search/" method="get"> <p>Search: <input type="text" name="q"></p> <input type="submit" value="Submit"> </form> </body> </html> |
VIEW