mirror of
https://github.com/friendica/friendica
synced 2024-11-15 18:13:54 +00:00
31 lines
706 B
Smarty
31 lines
706 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
|
|
{{* custom content from hook will replace everything. *}}
|
|
<div class="row">
|
|
{{if $content != '' }}
|
|
<div class="col-sm-12">
|
|
<div class="panel panel-default login-panel-content">
|
|
<div class="panel-body">
|
|
{{$content nofilter}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
|
|
<div class="col-md-7 col-sm-12 login-content">
|
|
{{if $customhome != false }}
|
|
{{include file="$customhome"}}
|
|
{{else}}
|
|
{{$defaultheader nofilter}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="col-md-5 col-sm-12 login-form">
|
|
{{$login nofilter}}
|
|
</div>
|
|
{{/if}}
|
|
</div>
|