66 lines
2.9 KiB
HTML
66 lines
2.9 KiB
HTML
title = "Içeri girmek"
|
|
url = "/login"
|
|
layout = "default"
|
|
description = "Login page"
|
|
is_hidden = 0
|
|
robot_index = "index"
|
|
robot_follow = "follow"
|
|
|
|
[account]
|
|
redirect = "index"
|
|
paramCode = "{{ :code }}"
|
|
forceSecure = 0
|
|
requirePassword = 0
|
|
==
|
|
<!-- Breadcumb Area -->
|
|
<div class="breadcumb_area">
|
|
<div class="container h-100">
|
|
<div class="row h-100 align-items-center">
|
|
<div class="col-12">
|
|
<h5>{{ 'header.IceriGirmek'|_ }}</h5>
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="{{ 'index'|page }}">{{ 'breadcrumbEsasySahypa'|_ }}</a></li>
|
|
<li class="breadcrumb-item active">{{ 'header.IceriGirmek'|_ }}</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Breadcumb Area -->
|
|
|
|
{% if not user %}
|
|
<!-- Login Area -->
|
|
<div class="bigshop_reg_log_area section_padding_100_50">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 col-md-12">
|
|
<div class="login_form mb-50">
|
|
<h5 class="mb-3">{{ 'header.IceriGirmek'|_ }}</h5>
|
|
{{ form_ajax('onSignin') }}
|
|
<div class="form-group">
|
|
<span style="position:relative;top: 33px;left: 18px;font-size: 13px;">+993</span>
|
|
<input type="number" name="login" class="form-control" min="61000000" max="65999999" id="userSigninLogin" placeholder="{{ 'inputPlaceholder.TelefonBelgi'|_ }}" style="padding-left: 52px;">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="password" name="password" class="form-control" id="userSigninPassword" placeholder="{{ 'inputPlaceholder.AcarSoz'|_ }}">
|
|
</div>
|
|
{% if rememberLoginMode == 'ask' %}
|
|
<div class="form-check">
|
|
<div class="custom-control custom-checkbox mb-3 pl-1">
|
|
<input type="checkbox" class="custom-control-input" id="customChe">
|
|
<label class="custom-control-label" for="customChe">{{ 'formMeniYatdaSakla'|_ }}</label>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-primary btn-sm">{{ 'header.IceriGirmek'|_ }}</button>
|
|
{{ form_close() }}
|
|
<div class="forget_pass mt-15">
|
|
{{ 'auth.OnHasabynyzYokmy'|_ }} <a href="{{ 'register'|page }}">{{ 'auth.AgzaBolmak'|_ }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<!-- Login Area End --> |