@extends('main') @section('body')

{!! __(GetAppText("page.login.title")) !!}

{!! __(GetAppText("page.login.text")) !!}

@component("components.inputs.input", ["id" => "username", "placeholder" => __(GetAppText("username"))]) @endcomponent
@component("components.inputs.input", ["id" => "password", "type" => "password", "placeholder" => __(GetAppText("password"))]) @endcomponent
@component("components.buttons.button", [ "id" => "btn_login", "title" => __(GetAppText("button.login")) ]) @endcomponent
@component("components.divider.divider_text", ["text" => __(GetAppText("help_needed")), "class" => "fw-bold"]) @endcomponent
@component("components.links.link", [ "id" => "lnk_forgot_username", "title" => __(GetAppText("link.forgot_username")), "url" => "/user/forgot-username", "linkClass" => "link-secondary" ]) @endcomponent
@component("components.links.link", [ "id" => "lnk_reset_password", "title" => __(GetAppText("link.forgot_password")), "url" => "/user/reset-password", "linkClass" => "link-secondary" ]) @endcomponent
{{__(GetAppText("no_account_yet"))}} @component("components.links.link", [ "id" => "lnk_register_user", "title" => __(GetAppText("link.sign_up")), "url" => "/user/register", "linkClass" => "link-secondary" ]) @endcomponent
@component("components.modals.modal", ["id" => "modal_info_complexity_requirements", "modalTitle" => __(GetAppText("info.complexity_requirements_username.title"))]) @slot("modalBody") {!! __(GetAppText("info.complexity_requirements_username.text")) !!} @endSlot @endcomponent @endsection