Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<div class="socialProfiles form">
2
<?php echo $this->Form->create('SocialProfile'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Add Social Profile'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('type');
8
		echo $this->Form->input('social_id');
9
		echo $this->Form->input('access_token');
10
		echo $this->Form->input('refresh_token');
11
	?>
12
	</fieldset>
13
<?php echo $this->Form->end(__('Submit')); ?>
14
</div>