Blame view

frontend/modules/user/widgets/HeaderNoAuthorized/views/base.php 486 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  use yii\helpers\Html;
  
  /**
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   */
  /*Html::a('<i class="fa fa-user pr-10"></i> ' . Yii::t('user', 'CheckIn'), ['/user/register/index'], [
      'class' => ' open-popup', 'data-id' => 'registrationPopup'
  ])*/
  ?>
  <span class="dropdown-trigger js-dropdown-toggle">
  <?php
  echo Html::button(Yii::t('user', 'CheckIn'), [
      'class' => 'open-popup registration-link', 'data-id' => 'registrationPopup'
  ]);
  ?>
  </span>