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

/* @var $this yii\web\View */
/* @var $model common\models\AccountForm */
?>    
<div class="site-about">
  <!-- !<h1><?= Html::encode($this->title) ?></h1>-->
  
     
	 <?php
    $form = ActiveForm::begin([
                'options' => [
                    'id' => 'edit-form'
                ]
    ]);?>
  <?=$form->field($model, 'delivery_institution');?>
	   <?=    $form->field($model, 'delivery_division');?>
	     <?=  $form->field($model, 'delivery_street');?>
	      <?= $form->field($model, 'delivery_postal_code');?>
	      <?= $form->field($model, 'delivery_location');?>
	       <?= $form->field($model, 'delivery_state');?>
	      <?= $form->field($model, 'delivery_country')->dropDownList($countryList);?>
	       <div class="form-group">
	      <?= Html::submitButton('Save', ['class' => ' btn btn-primary']); ?>
	      </div>
<?php ActiveForm::end(); ?>   
 </div>