Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_b.twig « change_password « display « templates - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4086ee9577725064058a0c0a84a563bc666207e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<tr class="vmiddle">
  <td>
    <label for="select_authentication_plugin_cp">{% trans 'Password Hashing:' %}</label>
  </td>
  <td>
    <select name="authentication_plugin" id="select_authentication_plugin_cp">
      {% for plugin_name, plugin_description in active_auth_plugins %}
        <option value="{{ plugin_name }}"{{ plugin_name == orig_auth_plugin ? ' selected' }}>{{ plugin_description }}</option>
      {% endfor %}
    </select>
  </td>
</tr>
<tr id="tr_element_before_generate_password"></tr>
</table>
<div{{ orig_auth_plugin != 'sha256_password' ? ' class="hide"' }} id="ssl_reqd_warning_cp">
  {% apply notice %}
  {% trans %}
    This method requires using an '<i>SSL connection</i>' or an '<i>unencrypted connection that encrypts the password using RSA</i>'; while connecting to the server.
  {% endtrans %}
  {{ show_mysql_docu('sha256-authentication-plugin') }}
  {% endapply %}
</div>