- Created complete documentation in docs/ directory - Added PROJECT_OVERVIEW.md with feature highlights and getting started guide - Added ARCHITECTURE.md with system design and technical details - Added SECURITY.md with comprehensive security implementation guide - Added DEVELOPMENT.md with development workflows and best practices - Added DEPLOYMENT.md with production deployment instructions - Added API.md with complete REST API documentation - Added CONTRIBUTING.md with contribution guidelines - Added CHANGELOG.md with version history and migration notes - Reorganized all documentation files into docs/ directory for better organization - Updated README.md with proper documentation links and quick navigation - Enhanced project structure with professional documentation standards
44 lines
2.0 KiB
Smarty
44 lines
2.0 KiB
Smarty
{if $smarty.get.s eq "" and $smarty.get.id eq ""}
|
|
|
|
{if ($password_recovery_captcha eq "1" and $global_section eq "frontend")} {assign var=extra_l value=1}
|
|
{elseif ($backend_password_recovery_captcha eq "1" and $global_section eq "backend")}{assign var=extra_l value=3} {/if}
|
|
{if ($username_recovery_captcha eq "1" and $global_section eq "frontend")} {assign var=extra_r value=2}
|
|
{elseif ($backend_username_recovery_captcha eq "1" and $global_section eq "backend")}{assign var=extra_r value=4} {/if}
|
|
|
|
<div class="login-margins-off">
|
|
<div class="vs-column full fit">
|
|
<div class="login-page">
|
|
<div class="tabs tabs-style-line">
|
|
{insert name=advHTML id="39"}
|
|
<h1 class="content-title"><i class="icon-user"></i> {lang_entry key="frontend.global.account"}</h1>
|
|
<nav>
|
|
<ul>
|
|
<li onclick="window.location='{$main_url}/{href_entry key="signin"}'"><a href="#section-topline-1" class="icon icon-enter" rel="nofollow"><span>{lang_entry key="frontend.global.signin"}</span></a></li>
|
|
<li onclick="window.location='{$main_url}/{href_entry key="signup"}'"><a href="#section-topline-2" class="icon icon-signup" rel="nofollow"><span>{lang_entry key="frontend.global.signup"}</span></a></li>
|
|
<li class="tab-current"><a href="#section-topline-3" class="icon icon-support" rel="nofollow"><span>{lang_entry key="frontend.global.recovery"}</span></a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="content-wrap">
|
|
<section id="section-topline-1">
|
|
</section>
|
|
<section id="section-topline-2">
|
|
</section>
|
|
<section id="section-topline-3" class="content-current">
|
|
<div>
|
|
{include file="tpl_frontend/tpl_auth/tpl_recovery_form.tpl"}
|
|
</div>
|
|
</section>
|
|
</div><!-- /content -->
|
|
</div><!-- /tabs -->
|
|
{insert name=advHTML id="40"}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
{include file="tpl_backend/tpl_signinjs.tpl"}
|
|
</script>
|
|
{else}
|
|
{include file="tpl_frontend/tpl_auth/tpl_recovery_form.tpl"}
|
|
{/if} |