google_forms/application/views/form_preview.php

70 lines
2.9 KiB
PHP
Raw Normal View History

2024-07-22 09:49:37 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Preview - Google Forms</title>
<link rel="stylesheet" href="https://bootswatch.com/3/flatly/bootstrap.min.css">
2024-07-23 12:54:27 +00:00
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/form_preview.css">
2024-07-22 09:49:37 +00:00
</head>
<body>
2024-07-26 12:41:46 +00:00
<style>.form-header {
margin-left: 251px; /* Adjust the value as needed */
}
</style>
2024-07-16 12:29:59 +00:00
<div class="container">
<div class="form-header">
2024-07-17 12:21:51 +00:00
<h2><?php echo $form->title; ?></h2>
2024-07-23 12:54:27 +00:00
<br>
2024-07-17 12:21:51 +00:00
<h4><?php echo $form->description; ?></h4>
2024-07-16 12:29:59 +00:00
</div>
2024-07-19 10:46:18 +00:00
<?php foreach ($questions as $question): ?>
<div class="form-section">
2024-07-16 12:29:59 +00:00
<div class="question-section">
2024-07-23 12:54:27 +00:00
<p class="question-label"><?php echo $question->text; ?></p>
2024-07-19 10:46:18 +00:00
</div>
<?php if ($question->type == 'multiple-choice'): ?>
<div class="options-container">
2024-07-16 12:29:59 +00:00
<?php foreach ($question->options as $option): ?>
<div class="option">
2024-07-19 10:46:18 +00:00
<input type="radio" name="option-<?php echo $question->id; ?>" disabled>
2024-07-16 12:29:59 +00:00
<label><?php echo $option->option_text; ?></label>
</div>
<?php endforeach; ?>
2024-07-19 10:46:18 +00:00
</div>
2024-07-22 09:49:37 +00:00
<?php elseif ($question->type == 'checkboxes'): ?>
2024-07-19 10:46:18 +00:00
<div class="options-container">
2024-07-16 12:29:59 +00:00
<?php foreach ($question->options as $option): ?>
<div class="option">
2024-07-19 10:46:18 +00:00
<input type="checkbox" name="option-<?php echo $question->id; ?>" disabled>
2024-07-16 12:29:59 +00:00
<label><?php echo $option->option_text; ?></label>
</div>
<?php endforeach; ?>
2024-07-19 10:46:18 +00:00
</div>
<?php elseif ($question->type == 'short-answer'): ?>
<div class="options-container">
<input type="text" class="form-control" placeholder="Short answer text" disabled>
</div>
<?php elseif ($question->type == 'paragraph'): ?>
<div class="options-container">
<textarea class="form-control" placeholder="Paragraph text" disabled></textarea>
</div>
<?php elseif ($question->type == 'dropdown'): ?>
<div class="options-container">
<select class="form-control" disabled>
2024-07-16 12:29:59 +00:00
<?php foreach ($question->options as $option): ?>
<option><?php echo $option->option_text; ?></option>
<?php endforeach; ?>
</select>
2024-07-19 10:46:18 +00:00
</div>
<?php endif; ?>
</div>
<?php endforeach; ?>
2024-07-23 12:54:27 +00:00
<a href="<?php echo base_url('Publish_controller/publish_form/'.$form->id); ?>" class="btn btn-success">Publish</a>
<br>
</div>
2024-07-22 09:49:37 +00:00
</body>
</html>