Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
2036 rajveer 1
#if($action.getCartMsg())
3080 rajveer 2
	#set($userinfo = $action.getUserInfo())
3
	#set($email="Enter your email address")
4
	#if($userinfo.isLoggedIn())
5
		#set($email=$userinfo.getEmail())
6
	#end
2810 rajveer 7
	<div id='cartRecommendationBox'>
8
		<h3 style='margin-top:5px; margin-bottom:5px;'>$action.getCartMsg()</h3>
3080 rajveer 9
		<input id="itemId" name="itemId" value=$action.getItemId() type="hidden" />
2810 rajveer 10
		#set($snippets=$action.getSnippet())
11
		#if($snippets && !$snippets.equals(""))
12
		<span style='font-size:14px; color:#003300; background-color:#ffffdd;  margin-bottom:8px;'>You can check out following similar products</span>
13
		<hr size=1/>
14
		$snippets
15
		#end
16
		<div class="clearBoth"></div>
17
	</div>
3080 rajveer 18
	<hr size=1/>
3255 rajveer 19
	 <div id="notificationBox" style="height: 70px; background-color:#F8F8F8; margin-top:5px;">
5228 amit.gupta 20
		<h3 style='margin-top:5px; margin-left:5px; margin-bottom:5px;'>$action.getActionMessage()</h3>
3255 rajveer 21
		<div style="margin-top:5px; margin-left:5px;" class="imgTextBox  textbox-image">
3080 rajveer 22
			<input type="text" id="emailId" name="emailId" value="$email" class="textbox"/>    
23
	    </div>
24
		<div style="margin-left:10px;margin-bottom:3px;" class="bigImgButton floatRight yellow-image">
3255 rajveer 25
			<input type="button" class="button" value="Notify Me" alt="Notify Me" id="notify"/>
3080 rajveer 26
		</div>
5228 amit.gupta 27
		<div class="clearBoth"></div>
3080 rajveer 28
	</div>
5228 amit.gupta 29
	#set ($offerNote = $action.getOfferNote()) 
30
	#if($offerNote)
31
		<hr size="1" />
32
		<div style="clear:both;font-size:14px">$offerNote</div>
33
	#end
2036 rajveer 34
#end