-
-
Save mnithya/fa2fadad3ae21927ee87 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="form-group"> | |
<?= $this->Form->create($assessmentForm) ?> | |
<fieldset> | |
<legend><?= __($assessmentForm->title) ?></legend> | |
<?php foreach ($questions as $question): ?> | |
<?php echo $this->Form->hidden('qid', ['value'=>$question->qid]) ?> | |
<?php echo $this->Form->input($question->qid.'.answer_text', ['label' => $question['text']]) ?> | |
<?php endforeach; ?> | |
</fieldset> | |
<?= $this->Form->button(__('Submit')); ?> | |
<?= $this->Form->end() ?> | |
</div> | |
</div> | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment