Subversion Repositories SmartDukaan

Rev

Rev 18988 | Details | Compare with Previous | 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>
18988 naman 23
 
18985 naman 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;?>
18991 naman 61
					<?php if(isset($tinres['address']['line1']) && !empty($tinres['address']['line1'])):?>
18985 naman 62
						<tr>
18991 naman 63
							<td><strong>Counter Address</strong></td><td><?php echo $tinres['address']['line1'];?></td>
18985 naman 64
						</tr>
65
					<?php endif;?>
18991 naman 66
					<?php if(isset($tinres['address']['city']) && !empty($tinres['address']['city'])):?>
67
					<tr>
68
							<td><strong>City</strong></td><td><?php echo $tinres['address']['city'];?></td>
69
					</tr>												
70
					<?php endif;?>
71
					<?php if(isset($tinres['address']['state']) && !empty($tinres['address']['state'])):?>
72
					<tr>
73
							<td><strong>State</strong></td><td><?php echo $tinres['address']['state'];?></td>					
74
					</tr>
75
					<?php endif;?>
76
					<?php if(isset($tinres['address']['country']) && !empty($tinres['address']['country'])):?>
77
					<tr>
78
							<td><strong>Country</strong></td><td><?php echo $tinres['address']['country'];?></td>
79
					</tr>					
80
					<?php endif;?>
81
					<?php if(isset($tinres['address']['pin']) && !empty($tinres['address']['pin'])):?>
82
					<tr>
83
							<td><strong>Pincode</strong></td><td><?php echo $tinres['address']['pin'];?></td>
84
					</tr>							
85
					<?php endif;?>
18985 naman 86
			</table>
87
		</div>
88
	</div>
89
	<div style="border:1px solid #58d936; padding:4px;margin:5px 0px 5px;font-size:12px;" class="card">
90
 
91
								<div style="line-height: 15px;">
92
									<b>*</b> If this is not your tin number then please mail us to <b>help@profitmandi.com</b>.
93
								</div>
94
 
95
		</div>
96
 
97
</div>