try again

This commit is contained in:
2021-07-28 00:32:13 +02:00
parent e14f8642f3
commit e77c62e381
58 changed files with 3129 additions and 2671 deletions

View 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>