Index: branches/LCSv1/controllers/default.py
===================================================================
--- branches/LCSv1/controllers/default.py	(revision 597)
+++ branches/LCSv1/controllers/default.py	(revision 598)
@@ -5,7 +5,7 @@
 # Show the login page
 def index():
-    form = FORM(LABEL('Username:',_for='username', _class="label"),
-                INPUT(_name='username',_size='10'),BR(),
-                INPUT(_type='submit', _class="submit-button btn btn-primary"))
+    form = FORM(LABEL('Username:',_for='username', _class="label username-label"),
+                INPUT(_name='username', _size='15', _style="font-size: 18px;"), BR(),
+                INPUT(_type='submit',_value="Log in", _class=" btn btn-primary", _style="margin-top: 3%;"))
     if form.process().accepted:
         # Put the username entry into the session variable
@@ -29,5 +29,18 @@
 # Display a search form
 def search():
-    form = FORM(LABEL('ClosureID/Log:',_for='closureid', _class="label"), INPUT(_name='closureid',_size='7'),INPUT(_name='lognum',_size='3'),XML('&nbsp;&nbsp;&nbsp;'), LABEL('Route: ',_for='route', _class="label"), SELECT(hwys,_name='route'), XML('&nbsp;&nbsp;&nbsp;'), LABEL('Direction: ',_for='direction', _class="label"), SELECT(hwyDirections,_name='direction'), BR(),BR(),LABEL('Dates:',_for='startdate', _class="label") ,INPUT(_name='startdate',_class='date'), XML('&nbsp;&nbsp;&nbsp;'), LABEL('  to:',_for='enddate', _class="label"), INPUT(_name='enddate',_class='date'),BR(),BR(),INPUT(_type='submit', _class="submit-button btn btn-primary"))
+    form = FORM(LABEL('ClosureID/Log:',_for='closureid', _class="label"), 
+                INPUT(_name='closureid',_size='7', _style="margin-right: 5px;"),
+                INPUT(_name='lognum',_size='3'),
+                XML('&nbsp;&nbsp;&nbsp;'), 
+                LABEL('Route: ',_for='route', _class="label"), 
+                SELECT(hwys,_name='route dropdown'), XML('&nbsp;&nbsp;&nbsp;'), 
+                LABEL('Direction: ',_for='direction', _class="label"),
+                SELECT(hwyDirections,_name='direction'), BR(),BR(), 
+                LABEL('Dates:',_for='startdate', _class="label"), 
+                INPUT(_name='startdate',_class='date'), 
+                XML('&nbsp;&nbsp;&nbsp;'), 
+                LABEL('  to:',_for='enddate', _class="label"), 
+                INPUT(_name='enddate',_class='date'),BR(),
+                INPUT(_value="Search", _type='submit', _class="btn btn-primary btn-default", _style="margin:  7% 45% 2% 40%;"))
     if form.process().accepted:
         # Put the form fields into the session variables
