Created
October 28, 2012 12:16
-
-
Save spbooks/3968465 to your computer and use it in GitHub Desktop.
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
<h3>Welcome to the Nockmarket</h3> | |
<p>Here you can manage your portfolio and view live prices.</p> | |
<div class="tabbable" style="margin-bottom: 18px;"> | |
<ul class="nav nav-tabs"> | |
<li class="active"><a href="#tab1" data-toggle="tab">Portfolio</a></li> | |
<li><a href="#tab2" data-toggle="tab">Nockmarket</a></li> | |
</ul> | |
<div class="tab-content" style="padding-bottom: 9px; border-bottom: 1px solid #ddd;"> | |
<div class="tab-pane active" id="tab1"> | |
<div class="well form-search"> | |
<input id="stock" type="text" class="input-medium search-query" name="stock"> | |
<button id="add-stock" class="btn">Add Stock</button> | |
</div> | |
<table class="table table-striped table-bordered table-condensed"> | |
<thead> | |
<tr> | |
<th>Stock Code</th> | |
<th>Last Price</th> | |
</tr> | |
</thead> | |
<tbody class="stock-list"> | |
</tbody> | |
</table> | |
</div> | |
<div class="tab-pane" id="tab2"> | |
<p>Howdy, I'm in Section 2.</p> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment