View difference between Paste ID: JXVwVjQT and 1zHCgbHf
SHOW: | | - or go back to the newest paste.
1
<?php
2
$this->load->view('template/overall_header');
3
echo validation_errors("<div class='error'>", "</div>");
4
echo $output;
5
?>
6
<div class="table-title">
7
    Edition de <?php echo $chapter_data["chapter_title"]; ?>
8
</div>
9
<?php
10
echo form_open_multipart("admin/chapters/edit/" . $chapter_data["chapter_id"]);
11
?>
12
<table>
13
    <tr>
14
        <th width="20%" align="right"><b>Titre:</b></th>
15
        <th width="80%" align="left"><input type="text" name="project-edit-title" value="<?php echo set_value('project-edit-title', $chapter_data["chapter_title"]); ?>" /></th>
16
    </tr>
17
    <tr>
18
        <th width="20%" align="right"><b>ZIP du chapitre:</b></th>
19
        <th width="80%" align="left">
20
            <input type="file" name="chapter-edit-files" />
21
        </th>
22
    </tr>
23
    <tr>
24
        <th></th>
25
        <th align="left">
26
            <button class="alt" type="submit">Editer</button>
27
            <button class="alt" type="reset">Reset</button>
28
        </th>
29
    </tr>
30
</table>
31
<?php
32
echo form_close();
33
$this->load->view('template/overall_footer');
34
?>