<?php // Sidebar ?>	
<div class="left customera_sidebar">
	<div class="box1 sprite">
		<i class="icon-user"></i>
		<span><b><?php echo  strtoupper($customer->last_name).' '.ucfirst($customer->first_name) ; ?></b></span>
		<p>Dernière connexion : <?php echo  $last_logindate ; ?></p>
	</div>
	<a href="<?php echo  URL::to_action('customerarea@index'); ; ?>" title="Mon espace client" class="btn btnS"><i class="icon-home"></i> Mon espace client</a><br />
	<a href="<?php echo  URL::to_action('customerarea@infos'); ; ?>" title="Mes informations" class="btn btnS"><i class="icon-user"></i> Mes informations</a><br />
	<a href="<?php echo  URL::to_action('logout'); ; ?>" title="Déconnexion" class="btn btn-danger"><i class="icon-off"></i> Déconnexion</a>
</div>