Subversion Repositories SmartDukaan

Rev

Rev 18986 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
18986 naman 1
<style>
2
	#go_back{
3
    margin: 2px auto;
4
    height: 30px;
5
    color: #555;
6
    background-color: #f5f5f5;
7
    padding:4px;
8
}
9
	td:first-child { background-color: #F9FCF7; border:1px solid white;}
10
	td{
11
	padding:2px;
12
    border:1px solid #e6e6e6;
13
}
14
 
15
</style>
16
 
17
	<div class='row card' style="padding-bottom:5px;">
18
		<div class='col-xs-12' style="padding:0px;">
19
			<table cellpadding="1" cellspacing="1" width="100%">
20
					<tr width="100%"> 
21
					      <td width="100%" colspan="2" style="border:1px solid #58d936;">
22
					      	<div align="center">
23
					      		<strong>Tin is already registered.</strong>
24
					      	</div>
25
					      </td>
26
	    			</tr>
27
					<?php if(isset($tinres['counter']['name']) && !empty($tinres['counter']['name'])):?>
28
						<tr>
29
							<td><strong>Name</strong></td><td><?php echo $tinres['counter']['name'];?></td>
30
						</tr>
31
					<?php endif;?>
32
					<?php if(isset($tinres['counter']['code']) && !empty($tinres['counter']['code'])):?>
33
						<tr>
34
							<td><strong>Counter Code</strong></td><td><?php echo $tinres['counter']['code'];?></td>
35
						</tr>
36
					<?php endif;?>
37
 
38
					<?php if(isset($tinres['counter']['tin']) && !empty($tinres['counter']['tin'])):?>
39
						<tr>
40
							<td><strong>TIN</strong></td><td><?php echo $tinres['counter']['tin'];?></td>
41
						</tr>
42
					<?php endif;?>
43
					<?php if(isset($tinres['counter']['mobile']) && !empty($tinres['counter']['mobile'])):?>
44
						<tr>
45
							<td><strong>Contact No.</strong></td><td><?php echo $tinres['counter']['mobile'];?></td>
46
						</tr>
47
					<?php endif;?>
18990 naman 48
					<?php if(isset($tinres['address']['line1']) && !empty($tinres['address']['line1'])):?>
18986 naman 49
						<tr>
18990 naman 50
							<td><strong>Counter Address</strong></td><td><?php echo $tinres['address']['line1'];?></td>
18986 naman 51
						</tr>
52
					<?php endif;?>
18990 naman 53
					<?php if(isset($tinres['address']['city']) && !empty($tinres['address']['city'])):?>
54
					<tr>
55
							<td><strong>City</strong></td><td><?php echo $tinres['address']['city'];?></td>
56
					</tr>												
57
					<?php endif;?>
58
					<?php if(isset($tinres['address']['state']) && !empty($tinres['address']['state'])):?>
59
					<tr>
60
							<td><strong>State</strong></td><td><?php echo $tinres['address']['state'];?></td>					
61
					</tr>
62
					<?php endif;?>
63
					<?php if(isset($tinres['address']['country']) && !empty($tinres['address']['country'])):?>
64
					<tr>
65
							<td><strong>Country</strong></td><td><?php echo $tinres['address']['country'];?></td>
66
					</tr>					
67
					<?php endif;?>
68
					<?php if(isset($tinres['address']['pin']) && !empty($tinres['address']['pin'])):?>
69
					<tr>
70
							<td><strong>Pincode</strong></td><td><?php echo $tinres['address']['pin'];?></td>
71
					</tr>							
72
					<?php endif;?>
18986 naman 73
			</table>
74
		</div>
75
	</div>
76
	<div style="border:1px solid #58d936; padding:4px;margin:5px 0px 5px;font-size:12px;" class="card">
77
 
78
								<div style="line-height: 15px;">
79
									<b>*</b> If you think this tin belongs to you then please mail us to <b>help@profitmandi.com</b>.
80
								</div>
81
 
82
		</div>
83
 
84