-
-
Save lorenzo/b5c7f2a4304fe8e22962 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 $k => $question): ?> | |
<?php echo $this->Form->hidden("$k.qid", ['value'=> $question->qid]) ?> | |
<?php echo $this->Form->input("$k.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