Created
October 14, 2018 00:27
-
-
Save marknagelberg/5b2237cc9157bdbe84b9b3283d0ba133 to your computer and use it in GitHub Desktop.
Updated index.html to print loaded data from database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Hello World!</h1> | |
<br> | |
<h3>Please enter a name:</h3> | |
<form method=post> | |
{{ form.csrf_token }} | |
{{ form.name.label }} | |
{{ form.name}} | |
{{ form.submit }} | |
</form> | |
{% for name in names %} | |
<br> | |
{{ name.name }} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment