1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-30 21:45:01 +03:00

Формы авторизации вынесены в отдельную папку auth

This commit is contained in:
Denis Shakhov 2014-05-16 09:37:25 +07:00
parent b17abeff27
commit 99058e6663
11 changed files with 9 additions and 9 deletions

View file

@ -11,5 +11,5 @@
{block name='layout_page_title'}{$aLang.user_authorization}{/block}
{block name='layout_content'}
{include file='forms/form.auth.login.tpl'}
{include file='forms/auth/form.auth.login.tpl'}
{/block}

View file

@ -11,5 +11,5 @@
{block name='layout_page_title'}{$aLang.reactivation}{/block}
{block name='layout_content'}
{include file='forms/form.auth.reactivation.tpl'}
{include file='forms/auth/form.auth.reactivation.tpl'}
{/block}

View file

@ -11,5 +11,5 @@
{block name='layout_page_title'}{$aLang.password_reminder}{/block}
{block name='layout_content'}
{include file='forms/form.auth.recovery.tpl'}
{include file='forms/auth/form.auth.recovery.tpl'}
{/block}

View file

@ -11,5 +11,5 @@
{block name='layout_page_title'}{$aLang.registration}{/block}
{block name='layout_content'}
{include file='forms/form.auth.signup.tpl'}
{include file='forms/auth/form.auth.signup.tpl'}
{/block}

View file

@ -11,5 +11,5 @@
{block name='layout_page_title'}{$aLang.registration_invite}{/block}
{block name='layout_content'}
{include file='forms/form.auth.invite.tpl'}
{include file='forms/auth/form.auth.invite.tpl'}
{/block}

View file

@ -20,19 +20,19 @@
<div data-type="tab-panes">
<div class="tab-pane" id="tab-pane-login" data-type="tab-pane">
{include file='forms/form.auth.login.tpl' isModal=true}
{include file='forms/auth/form.auth.login.tpl' isModal=true}
</div>
<div class="tab-pane" id="tab-pane-registration" data-type="tab-pane">
{if ! $oConfig->GetValue('general.reg.invite')}
{include file='forms/form.auth.signup.tpl' isModal=true}
{include file='forms/auth/form.auth.signup.tpl' isModal=true}
{else}
{include file='forms/form.auth.invite.tpl' isModal=true}
{include file='forms/auth/form.auth.invite.tpl' isModal=true}
{/if}
</div>
<div class="tab-pane" id="tab-pane-reminder" data-type="tab-pane">
{include file='forms/form.auth.recovery.tpl' isModal=true}
{include file='forms/auth/form.auth.recovery.tpl' isModal=true}
</div>
</div>
{/block}