<?php echo $this->render('admin/messagebox.phtml'); ?>
                <div class="postbox">
                    <h3 class="hndle">Set sphinx connection parameters</h3>
                    <div class="inside">
                    <form  action="<?php echo $_SERVER["REQUEST_URI"]; ?>" method="post" id="wizard_form">
                        <input type="hidden" name="connection_process" value="1" />
                        <input type="hidden" name="action" value="connection" />
                        <table class="form-table">
                            <tr>
                                <th scope="row"><label for="sphinx_host">Host name or IP address</label></th>
                                <td>
                                    <input type="text" name="sphinx_host" id="sphinx_host"
                                     value="<?php echo $this->view->sphinx_host?>" />
                                </td>
                            </tr>
                            <tr>
                                <th scope="row"><label for="sphinx_port">Port</label></th>
                                <td>
                                    <input type="text" name="sphinx_port" id="sphinx_port"
                                           value="<?php echo $this->view->sphinx_port?>" />
                                </td>
                            </tr>
                            <tr>
                                <th scope="row"><label for="sphinx_index">Index name</label></th>
                                <td>
                                    <input type="text" name="sphinx_index" id="sphinx_index"
                                           value="<?php echo $this->view->sphinx_index?>" />
                                </td>
                            </tr>
                        </table>
                            <p class="submit">
                                <input class="button-secondary cancel" type="button"
                                       onClick="return wizard_skip('connection');" value="Skip step" />
                                <input class="button-primary" type="button" name="next"
                                       onClick="return wizard_next();" value="Save &amp; Continue" />
                                 <input class="button-secondary cancel alignright" type="button"
                                       onClick="return wizard_cancel();" value="Cancel Wizard" />
                            </p>
                    </form>
                    </div>
                </div>
