44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?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>
|