Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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;?>
48
					<?php if(isset($tinres['address']) && !empty($tinres['address'])):?>
49
						<tr>
50
							<td><strong>Counter Address</strong></td>
51
							<td>
52
								<?php if(isset($tinres['address']['line1']) && !empty($tinres['address']['line1'])):?>
53
										<?php echo $tinres['address']['line1'];?>					
54
								<?php endif;?>
55
								<?php if(isset($tinres['address']['city']) && !empty($tinres['address']['city'])):?>
56
										<?php echo ", ".$tinres['address']['city'];?>					
57
								<?php endif;?>
58
								<?php if(isset($tinres['address']['state']) && !empty($tinres['address']['state'])):?>
59
										<?php echo ", ".$tinres['address']['state'];?>					
60
								<?php endif;?>
61
								<?php if(isset($tinres['address']['country']) && !empty($tinres['address']['country'])):?>
62
										<?php echo ", ".$tinres['address']['country'];?>					
63
								<?php endif;?>
64
								<?php if(isset($tinres['address']['pin']) && !empty($tinres['address']['pin'])):?>
65
										<?php echo "<br>Pincode- ".$tinres['address']['pin'];?>					
66
								<?php endif;?>
67
							</td>
68
						</tr>
69
					<?php endif;?>
70
			</table>
71
		</div>
72
	</div>
73
	<div style="border:1px solid #58d936; padding:4px;margin:5px 0px 5px;font-size:12px;" class="card">
74
 
75
								<div style="line-height: 15px;">
76
									<b>*</b> If you think this tin belongs to you then please mail us to <b>help@profitmandi.com</b>.
77
								</div>
78
 
79
		</div>
80
 
81