added some css and then created a header and sidebar as well as a login page and controller

This commit is contained in:
Ken Johnson
2013-04-24 12:43:34 -04:00
parent f95fd522ca
commit 8f2be0587f
19 changed files with 10257 additions and 54 deletions
+54
View File
@@ -0,0 +1,54 @@
<header>
<a href="index.html" class="logo">
<img src="#" alt="Logo"/>
</a>
<div class="user-profile">
<a data-toggle="dropdown" class="dropdown-toggle">
<img src="#" alt="profile">
</a>
<span class="caret"></span>
<ul class="dropdown-menu pull-right">
<li>
<a href="#">
Edit Profile
</a>
</li>
<li>
<a href="#">
Account Settings
</a>
</li>
<li>
<a href="#">
Logout
</a>
</li>
</ul>
</div>
<ul class="mini-nav">
<li>
<a href="#">
<div class="fs1" aria-hidden="true" data-icon="&#xe040;"></div>
<span class="info-label">
3
</span>
</a>
</li>
<li>
<a href="#">
<div class="fs1" aria-hidden="true" data-icon="&#xe04c;"></div>
<span class="info-label-green">
5
</span>
</a>
</li>
<li>
<a href="#">
<div class="fs1" aria-hidden="true" data-icon="&#xe037;"></div>
<span class="info-label-orange">
9
</span>
</a>
</li>
</ul>
</header>