Current File : //home/obabain/public_html/abc/UserPreferences.jsp |
<%@include file="NewFile.jsp"%>
<body>
<form action="adduserpre.jsp" method="post">
<div class="content">
<div class="row">
<div class="col-md-9" style="background-color:white;">
<div class="panel panel-success">
<div class="panel-heading main-color-bg">
<h3 class="panel-title">Edit User preferences</h3>
</div>
</div>
<div class="row">
<div class="form-group col-xs-2">
<div class="onerow">
Language
<!-- <select class="form-control input-group-lg reg_name" style="width:150px;margin:5px;" >
<option>English</option>
</select> -->
<select class="form-control" name="language">
<%
ResultSet rs=st.executeQuery("select * from language");
while(rs.next())
{
%>
<option value="<%=rs.getString("id")%>"><%=rs.getString("language") %></option>
<%
}
%>
</select>
</div>
</div>
<div class="form-group col-xs-2">
Time-zone
<select class="form-control" name="time">
<%
ResultSet rs1=st.executeQuery("select * from timezone");
while(rs1.next())
{
%>
<option value="<%=rs1.getString("id")%>"><%=rs1.getString("timezone") %></option>
<%
}
%>
</select>
</div>
<div class="form-group col-xs-2">
Short-time format
<input type="date" name="date" class="form-control input-group-lg reg_name" style="width:150px;margin:5px;">
</div>
<div class="form-group col-xs-2">
Currency format
<select class="form-control" name="currency">
<%
ResultSet rs2=st.executeQuery("select * from currency");
while(rs2.next())
{
%>
<option value="<%=rs2.getString("id")%>"><%=rs2.getString("currency") %></option>
<%
}
%>
</select>
</div>
<!-- <div class="form-group col-xs-2">
User Interface style
<select class="form-control input-group-lg reg_name" style="width:150px;margin:5px;" >
<option></option>
</select>
</div> -->
</div>
<div class="row">
<!-- <div class="form-group col-xs-2">
Task Assignment max.
<select class="form-control input-group-lg reg_name" style="width:150px;margin:5px;" >
<option>100%</option>
</select>
</div> -->
<!-- <div class="form-group col-xs-2">
Default event filter
<select class="form-control input-group-lg reg_name" style="width:150px;margin:5px;" >
<option>All events</option>
</select>
</div> -->
<div class="form-group col-xs-2">
Task notification method
<select class="form-control input-group-lg reg_name" name="notify" style="width:150px;margin:5px;" >
<option>Email</option>
<option>Mobile</option>
</select>
</div>
</div>
<!-- <div class="row">
<div class="form-group col-xs-5">
Task Log Email Default<br>
Email assignees
<input type="checkbox">
Email Task Contacts
<input type="checkbox">
Email Project Contacts
<input type="checkbox">
</div>
</div> -->
<!-- <div class="row">
<div class="form-group col-xs-2">
Email Subject
<input type="text" class="form-control input-group-lg reg_name" style="width:150px;margin:5px;" >
</div>
<div class="form-group col-xs-3">
Email Record by method
<select class="form-control input-group-lg reg_name" style="width:150px;margin:5px;" >
<option></option>
</select>
</div>
</div> -->
<!-- <div class="row">
<div class="form-group col-xs-3">
Show parent task expanded by default
<input type="checkbox">
</div>
</div> -->
</div>
<div class="col-md-2"></div>
<div class="col-md-5" style="margin-top:10px;">
<input type="submit" value="submit" class="btn btn-success"></div>
</div>
</div>
<%@include file="footer.jsp" %>
</form>
</body>
</html>