2024-07-14 21:04:04 +00:00
< div style = " margin: 0 10%; " >
< h1 > My Forms </ h1 >
< table >
< thead >
< tr >
< th > Form Title </ th >
2024-07-15 12:22:02 +00:00
< th > Published </ th >
2024-07-14 21:04:04 +00:00
< th > Created At </ th >
2024-07-18 10:49:23 +00:00
< th > Actions </ th >
2024-07-14 21:04:04 +00:00
</ tr >
</ thead >
< tbody >
< ? php if ( ! empty ( $forms )) : ?>
< ? php foreach ( $forms as $form ) : ?>
< tr >
2024-07-18 10:49:23 +00:00
< td >
< a href = " <?= base_url() ?>forms/preview/<?= $form->form_id ?> " >
< ? = htmlspecialchars ( $form -> title ? $form -> title : $form -> form_id , ENT_QUOTES , 'UTF-8' ) ?>
</ a >
</ td >
2024-07-15 12:22:02 +00:00
< td >< ? = ( $form -> is_published == 0 ) ? 'No' : 'Yes' ?> </td>
2024-07-14 21:04:04 +00:00
< td >< ? php echo date ( 'Y-m-d H:i:s' , strtotime ( $form -> created_at )); ?> </td>
2024-07-18 10:49:23 +00:00
< td >< a href = " <?= base_url() ?>forms/delete/<?= $form->form_id ?> " onclick = " return confirm('Are you sure you want to delete this form?'); " > Delete </ a ></ td >
2024-07-14 21:04:04 +00:00
</ tr >
< ? php endforeach ; ?>
< ? php else : ?>
< tr >
< td colspan = " 2 " > No forms found .</ td >
</ tr >
< ? php endif ; ?>
</ tbody >
</ table >
</ div >