Subversion Repositories SmartDukaan

Rev

Rev 18988 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
18985 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
<script>
17
	$(document).ready(function(){
18
		$("#go_back").click(function(){
19
			window.history.back();
20
		});
21
	});
22
</script>
23
<?php debug($tinres);?>
24
<div class = "container">
25
 
26
	<div id= "go_back">    
27
    	<span style="padding:3px" class="glyphicon glyphicon-arrow-left"></span>Back to deals
28
	</div>
29
 
30
	<div class='row card' style="padding-bottom:5px;">
31
		<div class='col-xs-12' style="padding:0px;">
32
			<table cellpadding="1" cellspacing="1" width="100%">
33
					<tr width="100%"> 
34
					      <td width="100%" colspan="2" style="border:1px solid #58d936;">
35
					      	<div align="center">
36
					      		<strong>Your tin details:</strong>
37
					      	</div>
38
					      </td>
39
	    			</tr>
40
					<?php if(isset($tinres['counter']['name']) && !empty($tinres['counter']['name'])):?>
41
						<tr>
42
							<td><strong>Name</strong></td><td><?php echo $tinres['counter']['name'];?></td>
43
						</tr>
44
					<?php endif;?>
45
					<?php if(isset($tinres['counter']['code']) && !empty($tinres['counter']['code'])):?>
46
						<tr>
47
							<td><strong>Counter Code</strong></td><td><?php echo $tinres['counter']['code'];?></td>
48
						</tr>
49
					<?php endif;?>
50
 
51
					<?php if(isset($tinres['counter']['tin']) && !empty($tinres['counter']['tin'])):?>
52
						<tr>
53
							<td><strong>TIN</strong></td><td><?php echo $tinres['counter']['tin'];?></td>
54
						</tr>
55
					<?php endif;?>
56
					<?php if(isset($tinres['counter']['mobile']) && !empty($tinres['counter']['mobile'])):?>
57
						<tr>
58
							<td><strong>Contact No.</strong></td><td><?php echo $tinres['counter']['mobile'];?></td>
59
						</tr>
60
					<?php endif;?>
61
					<?php if(isset($tinres['address']) && !empty($tinres['address'])):?>
62
						<tr>
63
							<td><strong>Counter Address</strong></td>
64
							<td>
65
								<?php if(isset($tinres['address']['line1']) && !empty($tinres['address']['line1'])):?>
66
										<?php echo $tinres['address']['line1'];?>					
67
								<?php endif;?>
68
								<?php if(isset($tinres['address']['city']) && !empty($tinres['address']['city'])):?>
69
										<?php echo ", ".$tinres['address']['city'];?>					
70
								<?php endif;?>
71
								<?php if(isset($tinres['address']['state']) && !empty($tinres['address']['state'])):?>
72
										<?php echo ", ".$tinres['address']['state'];?>					
73
								<?php endif;?>
74
								<?php if(isset($tinres['address']['country']) && !empty($tinres['address']['country'])):?>
75
										<?php echo ", ".$tinres['address']['country'];?>					
76
								<?php endif;?>
77
								<?php if(isset($tinres['address']['pin']) && !empty($tinres['address']['pin'])):?>
78
										<?php echo "<br>Pincode- ".$tinres['address']['pin'];?>					
79
								<?php endif;?>
80
							</td>
81
						</tr>
82
					<?php endif;?>
83
			</table>
84
		</div>
85
	</div>
86
	<div style="border:1px solid #58d936; padding:4px;margin:5px 0px 5px;font-size:12px;" class="card">
87
 
88
								<div style="line-height: 15px;">
89
									<b>*</b> If this is not your tin number then please mail us to <b>help@profitmandi.com</b>.
90
								</div>
91
 
92
		</div>
93
 
94
</div>