protected function getAccSettingsSectionHtml()
    {
        $url = $this->getUrl('adminhtml/adminform/settings');
        $formKey = Mage::getSingleton('core/session')->getFormKey();
        $email = $this->config->getEmail();
        $password = $this->config->getPassword();
        $apiKey = $this->config->getApiKey();
        $shopId = $this->config->getShopId();
        $html = <<<HTML
                <form id="edit_form" name="edit_form" method="post" action="{$url}">
                    <input name="form_key" type="hidden" value="{$formKey}" />
                    <input name="store" type="hidden" value="{$this->storeCode}" />
                    <h4 class="icon-head head-edit-form fieldset-legend">{$this->__('Account Settings')}</h4>
                    <fieldset id="my-fieldset">
                        <table cellspacing="0" class="form-list">
                            <tr>
                                <td class="label">{$this->__('Email Address')} </td>
                                <td class="input-ele">
                                    <input class="input-text" name="config[login]" size="40" maxlength="32" value="{$email}"/>
                                </td>
                            </tr>
                            <tr>
                                <td class="label">{$this->__('Password')}</td>
                                <td class="input-ele">
                                    <input type="password" class="input-text" name="config[password]" size="40" maxlength="128" value="{$password}"/>
                                </td>
                            </tr>
                            <tr>
                                <td class="label">{$this->__('API Key')} </td>
                                <td class="input-ele">
                                    <input class="input-text" name="config[api_key]" size="40" maxlength="32" value="{$apiKey}"/>
                                </td>
                            </tr>
                            <tr>
                                <td class="label">{$this->__('Shop ID')} </td>
                                <td class="input-ele">
                                    <input class="input-text" name="config[shop_id]" size="40" maxlength="32" value="{$shopId}"/>
                                </td>
                            </tr>
                            <tr>
                                <td></td>
                                <td><button>Save</button></td>
                            </tr>    
                        </table>
                    </fieldset>
                </form>
HTML;
        return $html;
    }