Thông tin

Các nội dung cơ bản của trang Thông tin

Trang thông tin là trang hiển thị thông tin người dùng khi đã đăng nhâp thành công.

Các thẻ meta

{% extends layout_layout %}
{% block meta %}
    {{ headTitle('Thông tin cá nhân').setSeparator(' - ').setAutoEscape(false)|raw }}
    <meta name="keywords" content="Thông tin cá nhân">
    <meta name="description" content="Thông tin cá nhân">
    <link rel="canonical" href="{{ getCurrentUrl(true) }}" />
    <meta property="og:url" content="{{ getCurrentUrl(true) }}">
    <meta property="og:image" content="https://dummyimage.com/300x200/000/fff">
    <meta property="og:type" content="website">
    <meta property="og:title" content="Thông tin cá nhân">
{% endblock %}

Tài khoản

Bao gồm các thông tin như:

  • Tên đầy đủ:

<p class="name-account">{{ user.fullName }}</p> 
  • Địa chỉ Email:

<p class="email-account">{{ user.email }}</p>
  • Số điện thoại:

<p class="tel-account">{{ user.mobile }}</p>
  • Địa chỉ:

<p class="address-account">{{ user.Option('cityName') }}, {{ user.Option('districtName') }}, {{ user.Option('wardName') }},{{ user.address }}</p>

Last updated