HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/phpMyAdmin/templates/table/structure/drop_confirm.twig
<form action="{{ url('/table/structure/drop') }}" method="post">
  {{ get_hidden_inputs({'db': db, 'table': table, 'selected': fields}) }}

  <fieldset class="confirmation">
    <legend>
      {% trans 'Do you really want to execute the following query?' %}
    </legend>

    <code>
      ALTER TABLE {{ backquote(table) }}<br>
      {% for field in fields %}
        &nbsp;&nbsp;DROP {{ backquote(field) }}
        {%- if loop.last %};{% else %},<br>{% endif %}
      {% endfor %}
    </code>
  </fieldset>

  <fieldset class="tblFooters">
    <input id="buttonYes" class="btn btn-secondary" type="submit" name="mult_btn" value="{% trans 'Yes' %}">
    <input id="buttonNo" class="btn btn-secondary" type="submit" name="mult_btn" value="{% trans 'No' %}">
  </fieldset>
</form>