Skip to content

Instantly share code, notes, and snippets.

/index.html Secret

Created April 2, 2017 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/acf68454e8cd75ae566bec06781d93a5 to your computer and use it in GitHub Desktop.
Save anonymous/acf68454e8cd75ae566bec06781d93a5 to your computer and use it in GitHub Desktop.
index.html - shared from CS50 IDE
{% extends "layout.html" %}
{% block title %}
Portfolio
{% endblock %}
{% block main %}
<form action="{{ url_for('index') }}" method="post">
<fieldset>
<div class="container">
<table class="table table-striped">
<thead>
<tr>
<th>Symbol</th>
<th>Name</th>
<th>Shares</th>
<th>Price</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
{{Do stuff}}
</tr>
</tbody>
</table>
</div>
</fieldset>
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment