116 lines
5.6 KiB
HTML
116 lines
5.6 KiB
HTML
{extends file="layout.tpl"}
|
|
|
|
{* Body Class *}
|
|
{block name="body-class"}page-login{/block}
|
|
|
|
{* Breadcrumb *}
|
|
{block name='no-return-functions' append}
|
|
{$breadcrumbs = [
|
|
['title' => {intl l="Login"}, 'url'=>{url path="/login"}]
|
|
]}
|
|
{/block}
|
|
|
|
|
|
{block name="main-content"}
|
|
|
|
{* This page should not replace the current previous URL *}
|
|
{set_previous_url ignore_current="1"}
|
|
|
|
{hook name="login.top"}
|
|
<div class="main">
|
|
{hook name="login.main-top"}
|
|
<article class="col-main" role="main" aria-labelledby="main-label">
|
|
<h1 id="main-label" class="page-header">{intl l="Login"}</h1>
|
|
{form name="thelia.front.customer.login"}
|
|
<form id="form-login" action="{url path="/login"}" method="post" {form_enctype} novalidate>
|
|
{if {$smarty.get.validation_done}}
|
|
<div class="alert alert-success">{intl l="Your customer account was successfully activated, you can now login."}</div>
|
|
{else}
|
|
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
|
|
{/if}
|
|
|
|
{form_field field='success_url'}
|
|
<input type="hidden" name="{$name}" value="{navigate to="previous"}"> {* the url the user is redirected to on login success *}
|
|
{/form_field}
|
|
|
|
{form_field field='error_message'}
|
|
<input type="hidden" name="{$name}" value="{intl l="missing or invalid data"}"> {* the url the user is redirected to on login success *}
|
|
{/form_field}
|
|
{form_hidden_fields}
|
|
{hook name="login.form-top"}
|
|
<fieldset>
|
|
{form_field field="email"}
|
|
<div class="form-group group-email{if $error} has-error{/if}">
|
|
<label for="{$label_attr.for}">{$label}</label>
|
|
<div class="control-input">
|
|
<input type="email" name="{$name}" id="{$label_attr.for}" value="{$value}" class="form-control input-sm" maxlength="255" {$attr} {if $required}aria-required="true" required{/if}{if !$value || $error} autofocus{/if}>
|
|
{if $error}
|
|
<span class="help-block">{$message}</span>
|
|
{assign var="error_focus" value="true"}
|
|
{elseif !$value}
|
|
{assign var="error_focus" value="true"}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/form_field}
|
|
|
|
<fieldset>
|
|
{form_field field="account"}
|
|
<legend>{intl l="Do you have an account?"}</legend>
|
|
{foreach $choices as $choice}
|
|
<div class="radio radio-account{$choice->value}">
|
|
<label for="{$label_attr.for}{$choice->value}">
|
|
<input type="radio" name="{$name}" id="{$label_attr.for}{$choice->value}" data-toggle="password" value="{$choice->value}"{if $value === {$choice->value}} checked{/if}> {$choice->label}
|
|
</label>
|
|
</div>
|
|
{/foreach}
|
|
{/form_field}
|
|
<div class="group-password">
|
|
{form_field field="password"}
|
|
<div class="form-group {if $error} has-error{/if}">
|
|
<label for="{$label_attr.for}" class="sr-only">{$label}</label>
|
|
<div class="control-input">
|
|
<input type="password" name="{$name}" id="{$label_attr.for}" class="form-control input-sm" maxlength="255" autocomplete="off"{if !isset($error_focus)} autofocus{/if}>
|
|
{if $error}
|
|
<span class="help-block">{$message}</span>
|
|
{/if}
|
|
</div>
|
|
<span class="help-block">
|
|
<a href="{url path="/password"}" data-toggle="confirmation" class="forgot-password">{intl l="Forgot your Password?"}</a>
|
|
</span>
|
|
</div>
|
|
{/form_field}
|
|
{form_field field='remember_me'}
|
|
<div class="checkbox pull-right">
|
|
<label for="{$label_attr.for}">
|
|
<input type="checkbox" name="{$name}" id="{$label_attr.for}" value="{$value}" {$attr} {if $options.checked}checked="checked"{/if}/> {$label}
|
|
</label>
|
|
</div>
|
|
{/form_field}
|
|
</div>
|
|
</fieldset>
|
|
</fieldset>
|
|
{hook name="login.form-bottom"}
|
|
<div class="group-btn">
|
|
<button type="submit" class="btn btn-primary"><i class="fa fa-chevron-right"></i> {intl l="Next"}</button>
|
|
</div>
|
|
</form>
|
|
{/form}
|
|
</article>
|
|
{hook name="login.main-bottom"}
|
|
</div>
|
|
{hook name="login.bottom"}
|
|
{/block}
|
|
|
|
{block name="stylesheet"}
|
|
{hook name="login.stylesheet"}
|
|
{/block}
|
|
|
|
{block name="after-javascript-include"}
|
|
{hook name="login.after-javascript-include"}
|
|
{/block}
|
|
|
|
{block name="javascript-initialization"}
|
|
{hook name="login.javascript-initialization"}
|
|
{/block}
|