<?php
use yii\helpers\Html;
use kartik\widgets\ActiveForm;
use backend\models\SignupForm;
use yii\helpers\Url;
use yii\bootstrap\Modal;

/* @var $this yii\web\View */
/* @var $model backend\models\AccountForm */
?>    
<div class="site-about">
  <!-- !<h1><?= Html::encode($this->title) ?></h1>-->
  
     
	 <?php
    $form = ActiveForm::begin([
                'options' => [
                    'id' => 'edit-form'
                ]
    ]);?>
  <?=$form->field($model, 'institution');?>
	   <?=    $form->field($model, 'division');?>
	     <?=  $form->field($model, 'street_pobox');?>
	      <?= $form->field($model, 'postal_code');?>
	      <?= $form->field($model, 'location_city');?>
	      <?= $form->field($model, 'country')->dropDownList($countryList);?>
	       <div class="form-group">
	      <?= Html::submitButton('Save', ['class' => ' btn btn-primary']); ?>
	      </div>
<?php ActiveForm::end(); ?>   
 </div>