File: userSecurity.twig

package info (click to toggle)
matomo 5.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 95,068 kB
  • sloc: php: 289,425; xml: 127,249; javascript: 112,130; python: 202; sh: 178; makefile: 20; sql: 10
file content (22 lines) | stat: -rw-r--r-- 1,039 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'admin.twig' %}

{% set title %}{{ 'General_Security'|translate }}{% endset %}

{% block content %}
{% set afterPasswordEventContent %}{{ postEvent('Template.userSecurity.afterPassword') }}{% endset %}

<div
    vue-entry="UsersManager.UserSecurity"
    delete-token-nonce="{{ deleteTokenNonce|default(null)|json_encode }}"
    tokens="{{ tokens|default(null)|json_encode }}"
    is-users-admin-enabled="{{ isUsersAdminEnabled|default(null)|json_encode }}"
    change-password-nonce="{{ changePasswordNonce|default(null)|json_encode }}"
    is-valid-host="{{ isValidHost|default(null)|json_encode }}"
    is-super-user="{{ isSuperUser|default(null)|json_encode }}"
    invalid-host="{{ invalidHost|default(null)|json_encode }}"
    after-password-event-content="{{ afterPasswordEventContent|default(null)|json_encode }}"
    invalid-host-mail-link-start="{{ invalidHostMailLinkStart|default(null)|json_encode }}"
    password-strength-validation-rules="{{ passwordStrengthValidationRules|json_encode }}"
></div>

{% endblock %}