try again
This commit is contained in:
43
plugins/default/pages/contents/index.php
Normal file
43
plugins/default/pages/contents/index.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (softlab24.com).ossn
|
||||
* @author OSSN Core Team <info@softlab24.com>
|
||||
* @copyright (C) SOFTLAB24 LIMITED
|
||||
* @license Open Source Social Network License (OSSN LICENSE) http://www.opensource-socialnetwork.org/licence
|
||||
* @link https://www.opensource-socialnetwork.org/
|
||||
*/
|
||||
?>
|
||||
<div class="row ossn-page-contents">
|
||||
<div class="col-md-7 home-left-contents">
|
||||
<?php
|
||||
$contents = ossn_view_form('login2', array(
|
||||
'id' => 'ossn-login',
|
||||
'action' => ossn_site_url('action/user/login'),
|
||||
));
|
||||
echo ossn_plugin_view('widget/view', array(
|
||||
'title' => ossn_print('site:login'),
|
||||
'contents' => $contents,
|
||||
));
|
||||
|
||||
echo ossn_plugin_view('widget/view', array(
|
||||
'title' => ossn_print('flexi:latest:members'),
|
||||
'contents' => ossn_plugin_view('flexi/members_widget', array('count' => 20))
|
||||
));
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<?php
|
||||
$contents = ossn_view_form('signup', array(
|
||||
'id' => 'ossn-home-signup',
|
||||
'action' => ossn_site_url('action/user/register')
|
||||
));
|
||||
$heading = "<p>".ossn_print('its:free')."</p>";
|
||||
echo ossn_plugin_view('widget/view', array(
|
||||
'title' => ossn_print('create:account'),
|
||||
'contents' => $heading.$contents,
|
||||
));
|
||||
?>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user