61 lines
2.3 KiB
HTML
61 lines
2.3 KiB
HTML
{include file="phoenix/system/_header.html"}
|
|
|
|
{include file="phoenix/system/_breadcrumbs.html"}
|
|
|
|
{if $message}
|
|
{foreach $message as $info}
|
|
{include file="phoenix/system/_message.html"}
|
|
{/foreach}
|
|
{/if}
|
|
|
|
<!-- start content -->
|
|
<section id="content">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6 offset-md-3">
|
|
|
|
<div class="sign-form">
|
|
<h3 class="first-child"><i class="fa fa-users" aria-hidden="true"></i> {$lang.heading_title}</h3>
|
|
<hr>
|
|
<form name="login" action="{html_get_link}" method="POST" role="form">
|
|
{if $mySystem.sed}
|
|
<input type="hidden" name="{$mySystem.session_name}" value="{$mySystem.session_id}">
|
|
<input type="hidden" name="formid" value="{$mySystem.formid}">
|
|
{/if}
|
|
<input type="hidden" name="action" value="process">
|
|
<input type="hidden" name="content" value="{$filename.login}">
|
|
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text">
|
|
<i class="fa fa-user" aria-hidden="true"></i>
|
|
</div>
|
|
</div>
|
|
<input type="email_address" name="email_address" class="form-control" id="email_address" placeholder="{$lang.entry_email_address}" data-original-title="" title="">
|
|
</div>
|
|
<br>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text">
|
|
<i class="fa fa-lock" aria-hidden="true"></i>
|
|
</div>
|
|
</div>
|
|
<input type="password" name="password" class="form-control" id="InputPassword" placeholder="{$lang.entry_password}" data-original-title="" title="">
|
|
</div>
|
|
<br>
|
|
<button type="submit" class="btn btn-primary w-100"><i class="fa fa-check" aria-hidden="true"></i> {$lang.button_login}</button>
|
|
<hr>
|
|
</form>
|
|
<p>{$lang.text_password_forgotten} <a href="{html_href_link content=$filename.password_forgotten}">{$lang.link_password_forgotten}</a></p>
|
|
<div class="bg-light">
|
|
<h2 class="text-center">{$lang.text_new_customer}</h2>
|
|
<a href="{html_href_link content=$filename.create_account}"><button type="button" class="btn btn-outline-danger w-100">{$lang.link_new_customer}</button></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- .row -->
|
|
</div><!--end container-->
|
|
</section>
|
|
<!-- end content -->
|
|
|
|
{include file="phoenix/system/_footer.html"} |