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 __('Admin 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>
15
<div class="actions">
16
	<h3><?php echo __('Actions'); ?></h3>
17
	<ul>
18
 
19
		<li><?php echo $this->Html->link(__('List Social Profiles'), array('action' => 'index')); ?></li>
20
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
21
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
22
	</ul>
23
</div>