Current File : //home/obabain/public_html/abc/accountTransaction.jsp |
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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>Insert title here</title>
</head>
<body>
<%@include file="master.jsp" %>
<form>
<div class="content">
<div class="row">
<div class="col-md-8" style="background-color:white; ">
<div class="panel panel-default" >
<div class="panel-heading main-color-bg">
<h3 class="panel-title">Accounting Vouchers</h3>
</div>
</div>
<table class="table">
<tr>
<td align="center">
<a href="PaymentVoucherNew.jsp" class="btn btn-info" style="width:200px;">Payment</a><br>
<a href="Receiptvoucher.jsp" class="btn btn-info" style="width:200px;">Receipt</a><br>
<a href="Contravoucher.jsp" class="btn btn-info" style="width:200px;">Contra</a><br>
<a href="Journalvoucher.jsp" class="btn btn-info" style="width:200px;">Journal</a><br>
<!-- <a href="SalesVoucher.jsp" class="btn btn-info" style="width:200px;">Sales</a><br>
<a href="PurchaseVoucher.jsp" class="btn btn-info" style="width:200px;">Purchase</a><br> -->
</td>
</tr>
</table>
<div class="modal-footer" id="contact_submit">
<input type="button" value="Back" style="background:#204b58;" class="btn btn-info pull-left" onclick="goBack()"/>
</div>
</div>
</div>
</div>
</form>
</body>
<script type="text/javascript">
function goBack() {
window.history.back();
};
</script>
</html>