I'm new to yii..i create one form in that i want to include the validations so i create one external file if i include that i got this error in chrome..if i select inspect elements it shows the html page but i use only php file how to recover it.how to include the external js in php on yii.i use one method tell me is that right or wrong.
<?php
$baseUrl = Yii::app()->baseUrl;
$cs = Yii::app()->getClientScript();
$cs->registerScriptFile($baseUrl.'/js/logincheck.js');
?>
<?php
/* @var $this SiteController */
/* @var $model LoginForm */
/* @var $form CActiveForm */
$this->pageTitle=Yii::app()->name . ' - SimpleLogin';
$this->breadcrumbs=array(
'SimpleLogin',
);
?>
<h1>Login</h1>
<p>Please fill out the following form with your login credentials:</p>
<div class="form" onsubmit="check()">
<?php
$url=Yii::app()->createAbsoluteUrl('site/newlogin');
echo CHtml::beginForm($url,'POST') ?>
<p class="note">Fields with <span class="required">*</span> are required.</p>
<div class="row",id="s">
<?php echo CHtml::label('name',''); ?>
<?php echo CHtml::textField('name','',array('onblur'=>"keyw()",'id'=>'s')); ?>
</div>
<div class="row">
<?php echo CHtml::label('password',''); ?>
<?php echo CHtml::passwordField('password',''); ?>
</div>
<div class="row">
<?php echo CHtml::dropDownList('role','',
array('M' => 'Male', 'F' => 'Female'),
array('empty' => '(Select a gender)'));
?>
</div>
<div class="row buttons">
<?php echo CHtml::submitButton('Submit',array('name'=>'submit')); ?>
</div>
<?php echo CHtml::encode($model->name)."-". CHtml::encode($model->password)."-".CHtml::encode($model->role);?>
<?php echo CHtml::endForm(); ?>
</div><!-- form -->
</div>