-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jtax_foreign_bank_accounts.php
245 lines (211 loc) · 7.67 KB
/
Jtax_foreign_bank_accounts.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!Doctype html>
<html lang="en">
<head>
<title>JTax Foriegn Bank Accounts page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale="1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.jtax {
background-color: rgb(255,255,255);
border: none;
color: blue;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 40px;
border-radius: 12px;
float:left;
}
.jtaxicon
{
text-decoration:none;
}
.jtax:hover {
background-color: rgb(255,255,255); /* Green */
color: black;
}
.info
{
background-color: rgb(255,255,255);
color: rgb(0,0,0);
}
.info:hover {
background-color: rgb(255,255,255); /* Green */
color: black;
}
.info:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.sources
{
background-color: rgb(255,255,255);
color: blue;
}
.sources:hover {
background-color: rgb(255,255,255); /* Green */
color: black;
}
.sources:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.deductions
{
background-color: rgb(255,255,255);
color: rgb(0,0,0);
}
.deductions:hover {
background-color: rgb(255,255,255); /* Green */
color: black;
}
.deductions:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.taxes
{
background-color: rgb(255,255,255);
color: rgb(0,0,0);
}
.taxes:hover {
background-color: rgb(255,255,255); /* Green */
color: black;
}
.taxes:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.taxfiling
{
background-color: rgb(255,255,255);
color: rgb(0,0,0);
}
.taxfiling:hover {
background-color: rgb(255,255,255); /* Green */
color: black;
}
.taxfiling:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.footer
{
margin-left:20px;
}
.none:hover
{
text-decoration:none;
}
.h3one
{
margin-left:200px;
}
.save
{
background-color:white;
margin-left:50px;
}
.bottom{
border-style: inset;
border-width:2px;
margin-top:250px;
}
.div1
{
margin-left:200px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default nb">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand nb" href="Jtaxmainpage.php">JTax</a>
</div>
</div>
</nav>
<br>
<br>
<div class="container">
<div class="btn-group btn-group-justified">
<div class="btn-group">
<button type="button" class="btn btn-primary info"><a href="Jtaxpersonalinfo.php" class="none">Information</a></button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-primary dropdown-toggle sources" data-toggle="dropdown">
Income Sources <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
<li><a href="Jtaxsalary.php">Salary</a></li>
<li><a href="Jtaxotherincome.php">Other Income</a></li>
<li><a href="Jtaxhouse.php">House Property</a></li>
<li><a href="Jtaxcapitalgain.php">Capital Gain</a></li>
<li><a href="Jtaxbussiness.php">Bussiness and Profession</a></li>
</ul>
</div>
<div class="btn-group">
<button type="button" class="btn btn-primary deductions">
<a href="Jtaxdeductions.php" class="none">
Deductions</a></button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-primary taxes">
<a href="Jtaxtaxespaid.php" class="none">
Taxes paid</a></button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-primary taxfiling">
<a href="Jtaxtaxfiling.php" class="none">
Tax Filing</a></button>
</div>
</div>
</div>
<br>
<br></br>
<div class="div1">
<h3>Schedule FA: Details of Foreign Bank Accounts</h3>
<br>
<p class="text-info"><b>Instructions:</b>The peak balance needs to be filled in Indian Rupees.</p>
<form action="" method="post" name="">
<div class="bhoechie-tab-content">
<center>
<button class="btn btn-info" type="button" id="firm_indirectowners_btn" >Add Entry</button>
</center>
<div id="fio_add_here" class="panel-group" style='margin-top:20px;'>
</div>
</div>
<button type="submit" class="btn btn-primary save">
<a href="Jtaxtaxfilingassets.php" class="none">Save</a>
</button>
</form>
</div>
<script>
var firm_indirectowners_cntr=0;
var firm_io_ondel=[];
$(document).ready(function(){
$('#firm_indirectowners_btn').click(function()
{
firm_indirectowners_cntr=firm_indirectowners_cntr+1;
var ele="<div class='panel panel-default' id='pnlfio"+firm_indirectowners_cntr+"'><div class='panel-body' style='max-height:340px;'><div style='margin:20px;position: relative;left: 10px;top: -43px; margin-top:61px;'>ID<input type='number_format' id='fioiln"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;' name='id'/></div><div style='margin:20px; position: relative;left: 300px;top: -85px;'>Country<input type='text' id='fioit"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1; name='country'/></div><div style='margin:20px; position: relative;left: 620px;top: -135px;'>Name of the Bank<input type='text' name='nob' id='fiortd"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;'/></div><div style='margin:20px; position: relative;left: 6px;top: -126px;'>Address of the Bank<input type='text' name='aob' id='fiortd"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;'/></div><div style='margin:20px; position: relative;left: 370px;top: -172px;'>Name in Account<input type='text' name='name' id='fiortd"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;'/></div><div style='margin:20px; position: relative;left: 6px;top: -163px;'>Owner Status<input type='text' name='os' id='fiortd"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;'/></div><div style='margin:20px; position: relative;left: 369px;top: -209px;'>Account Number<input type='number' name='ac' id='fiortd"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;'/></div><div style='margin:20px; position: relative;left: 703px;top: -289px;'>Iban Swift Code<input type='text' name='isc' id='fiortd"+firm_indirectowners_cntr+"' style='position:relative;left:10px;' onkeydown='firm_indirectowners=1;'/></div></div><div class='panel-footer'><button class='btn btn-danger' type='button' onclick='fiood("+firm_indirectowners_cntr+")'>delete</button></div></div>";
$('#fio_add_here').append(ele);
});
});
function fiood(a){
firm_io_ondel.push(a);
//alert(firm_io_ondel);
document.getElementById("pnlfio"+a).style.display="none";
}
</script>
<hr class="bottom">
<p class="footer">JTax is a product by JUGGERNAUTS</p>
</body>
</html>