Improve visibility of the website
[proteocache.git] / webapp / view / queryTimeExecution.jsp
index aeb8564..3722fe3 100644 (file)
        <div class="container">
        <jsp:include page="fragments/mainmenu.jsp" />
 
-       <spring:url value="/exectime/query" var="formurl"/>
-       <form method="get" action="${fn:escapeXml(formurl)}">
-               <h3>Enter time period</h3>      
-                <% Calendar cal = Calendar.getInstance();
-                       String datecalBegin = cal.get(Calendar.YEAR) + "/" + (cal.get(Calendar.MONTH) + 1) + "/1";
-                       String datecalEnd = cal.get(Calendar.YEAR) + "/" + (cal.get(Calendar.MONTH) + 1) + "/" + cal.get(Calendar.DAY_OF_MONTH);
-                %>
-               <p>from  <input type="text" name="data1" value = <%= datecalBegin%> style=" width : 145px;"/>
-               to <input type="text" name="data2" value = <%= datecalEnd%> style=" width : 145px;"/></p>
-               <input type="checkbox" name="option" value="AllDates">Query for all dates<br>
-                               <input type="hidden" name="option" value="off"/>
-               <input type="submit" name="Search" value="Search"/>
-       </form>
+       <% Calendar cal = Calendar.getInstance();
+               String datecalBegin = cal.get(Calendar.YEAR) + "/" + (cal.get(Calendar.MONTH) + 1) + "/1";
+               String datecalEnd = cal.get(Calendar.YEAR) + "/" + (cal.get(Calendar.MONTH) + 1) + "/" + cal.get(Calendar.DAY_OF_MONTH);
+       %>
+
+       <div class="panel panel-default">
+               <div class="panel-heading">
+                       <div style="font-weight:bold;">Enter time period for execution statistics</div>
+               </div>
+               <div class="panel-body">
+                       <spring:url value="/exectime/query" var="formurl"/>
+                       <form method="get" action="${fn:escapeXml(formurl)}">
+                               <p>From <input type="text" name="data1" value = <%= datecalBegin%> style=" width : 145px;"/>
+                               to <input type="text" name="data2" value = <%= datecalEnd%> style=" width : 145px;"/></p>
+                               <p><input type="checkbox" name="option" value="AllDates"> Query for all dates<br>
+                               <input type="hidden" name="option" value="off"/></p>
+                               <input type="submit" name="Search" value="Search"/>
+                       </form>
+               </div>
+       </div>
        
                <jsp:include page="fragments/footer.jsp"/>
        </div>