google_forms/application/views/response_details_view.php

16 lines
603 B
PHP
Raw Normal View History

2024-07-19 10:46:18 +00:00
<div class="container">
<div class="form-header">
<h2><?php echo $form->title; ?></h2>
<h4><?php echo $form->description; ?></h4>
</div>
<?php foreach ($questions as $question): ?>
<div class="form-section">
<div class="question-section">
<input type="text" class="form-control question-label" value="<?php echo $question->question_text; ?>" disabled>
<textarea class="form-control" disabled><?php echo $question->answered_text; ?></textarea>
</div>
</div>
<?php endforeach; ?>
</div>