Create/Develop View files with plain HTML (Without using ActiveForm Class)

Comparing #4 with #5

Revision #5 was created by kalpit kalpit on Dec 3, 2013, 1:25:31 PM.

changed form action url

Content

[...]
```php
<?php
$error= $model->getErrors();
?>
<form method="post" action="<?php echo Yii::app()->
getBaseUrl(true).'/index.php/admincreateUrl(array('/user/create')); ?>" enctype="multipart/form-data">
<div class="row">
<label>Email</label>
<input type="text" name="email" value="<?php echo $model->email; ?>"/>
<span><?php if(isset($error['email'])) echo $error['email'][0]; ?></span>
</div>
[...]