
<!-- LOGIN-FORM -->

<div class="row-fluid">
	<div class="login-box">
		<div class="alert alert-info">
			Please fill the form carefully
		</div>
		
		<?php echo $this->Form->create('Profile',array('action'=>'add','class'=>'userForm loging-form profile-form'))?>
		<fieldset>
			<?php echo $this->Form->input('fname',array('div'=>false))?>
			<?php echo $this->Form->input('lname')?>
			<?php echo $this->Form->input('User.username',array('label'=>'Email'))?>
			<?php echo $this->Form->input('User.password')?>
		    
			<?php echo $this->Form->input('Submit',array('type'=>'submit','class'=>'btn','label'=>false))?>
		</fieldset>
		<?php echo $this->Form->end()?>
		
		<?php 
		echo $this->Html->link('Already registered? Login',array('action'=>'login'));
		//echo $this->Html->link(' Not a member?',array('action'=>'register'))
		?>
	</div><!--/span-->
</div>
