Current File : /home/obabain/ms_obaba_in/SystemSettings.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@ include file="Connection.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

<title>Settings</title>
</head>
<body>

<%@include file="master.jsp" %>

<div class="row">


			<div class="container">
			 <div class="row">

<button class="tablink" onclick="openPage('Home', this, '#3F8E9E')" id="defaultOpen">General</button>
<button class="tablink" onclick="openPage('client', this, '#3F8E9E')" >Invoices</button>
<button class="tablink" onclick="openPage('vendor', this, '#3F8E9E')">Quotes</button>
<button class="tablink" onclick="openPage('supplier', this, '#3F8E9E')">Porders</button>
<button class="tablink" onclick="openPage('consultant', this, '#3F8E9E')">Taxes</button>
<button class="tablink" onclick="openPage('govt', this, '#3F8E9E')">Email</button>
<button class="tablink" onclick="openPage('internal', this, '#3F8E9E')">Online Payment</button>
<button class="tablink" onclick="openPage('proj', this, '#3F8E9E')">Projects</button>
<button class="tablink" onclick="openPage('update', this, '#3F8E9E')">Updates</button>

<div id="Home" class="tabcontent" style="margin-top:40px;">

<div class="panel panel-success col-md-12">
<div class="panel panel-heading ">
                <h3 class="panel-title">General</h3>               
                </div> 
 <div class="panel col-md-6">        
<div class="form-group">
Language
<select class="form-control"><option>English</option></select>
</div>
<div class="form-group">
First Day of Week
<select class="form-control"><option>Monday</option></select>
</div>
<div class="form-group">
Default Country
<select class="form-control"><option>India</option></select>

             </div>
              </div>
              <div class="panel col-md-6">
              <div class="form-group">
Theme
<select class="form-control"><option>InvoicePlane default</option></select>
</div>
<div class="form-group">
Date Format
<select class="form-control"><option>08/06/2018</option></select>
</div>
              </div>
             </div> 

<div class="panel panel-success col-md-12">
<div class="panel panel-heading ">
                <h3 class="panel-title">Amount Settings</h3>               
                </div> 
   <div class="panel col-md-6">            

<div class="form-group">
Currency Symbol
<input type="text" value="&#8377" class="form-control">
</div>
<div class="form-group">
Currency Code
<select class="form-control"><option>INR</option></select>
</div>
<div class="form-group">
Tax rate decimal places
<select class="form-control"><option>2</option></select>
</div>
     
<div class="form-group">
Number of items in list
<select class="form-control"><option>15</option></select>
</div>  
   </div> 
   <div class="panel col-md-6"> 
   <div class="form-group">
Currency Symbol Placement
<select class="form-control"><option>Before Amount</option></select>
</div>
<div class="form-group">
Thousand seperator
<input type="text" value="," class="form-control">
</div>
<div class="form-group">
Decimal point
<input type="text" value="." class="form-control">
</div> 
     </div>
   </div>
   
   <div class="panel panel-success col-md-12">
<div class="panel panel-heading ">
                <h3 class="panel-title">Dashboard</h3>               
                </div> 
    <div class="col-md-6">           

<div class="form-group">
Quote Overview period
<select class="form-control"><option>This Month</option></select>
</div>
<div class="form-group">
Disable quick actions
<select class="form-control"><option>No</option>
<option>Yes</option>
</select>
</div>
     
   </div>   
   <div class="col-md-6">
   <div class="form-group">
Invoice overview period
<select class="form-control"><option>This Month</option></select>
</div>
   </div>        

</div>
<div class="panel panel-success col-md-12">
<div class="panel panel-heading ">
                <h3 class="panel-title">Interface</h3>               
                </div> 
    <div class="col-md-6">           

<div class="form-group">
Custom Title
<input type="text" class="form-control">
</div>
<div class="form-group">
Use a monospace font for amounts
<select class="form-control"><option>No</option>
<option>Yes</option>
</select>
</div>
     
   </div>   
   <div class="col-md-6">
   <div class="form-group">
Login logo
 <input type = "file" name = "file" class="form-control" />
         <br />
         
</div>
   </div>        

</div>

</div>		
</div>
    </div>
<%@include file="footer.jsp" %>

<script>
function openPage(pageName,elmnt,color) {
    var i, tabcontent, tablinks;
    tabcontent = document.getElementsByClassName("tabcontent");
    for (i = 0; i < tabcontent.length; i++) {
        tabcontent[i].style.display = "none";
    }
    tablinks = document.getElementsByClassName("tablink");
    for (i = 0; i < tablinks.length; i++) {
        tablinks[i].style.backgroundColor = "";
    }
    document.getElementById(pageName).style.display = "block";
    elmnt.style.backgroundColor = color;
    

}
document.getElementById("defaultOpen").click();
</script>
</body>
</html>