google_forms/application/views/templates/form_title.php

18 lines
550 B
PHP
Raw Normal View History

2024-07-12 11:50:41 +00:00
<?php echo form_open('new_form/create_form'); ?>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<h1 class="text-center">
<?php echo('Form Details'); ?>
</h1>
<div class="form-group">
<input type = "text" name ="title" class="form-control" placeholder = "Title" required autofocus>
</div>
<div class="form-group">
<input type = "text" name ="description" class="form-control" placeholder = "Form Description" required autofocus>
</div>
2024-07-23 12:54:27 +00:00
<button type = "submit" class = "btn btn-primary btn-block" >Create</button>
2024-07-12 11:50:41 +00:00
</div>
</div>
2024-07-23 12:54:27 +00:00