113 lines
4.0 KiB
PHP
113 lines
4.0 KiB
PHP
<input type="hidden" name="remote_action" id="remote_action" />
|
|
<input type="hidden" name="remote_data" id="remote_data" />
|
|
<input type="hidden" name="remote_secure_autoconfig" id="remote_secure_autoconfig" />
|
|
|
|
<?php if ($this->new): ?>
|
|
<div class="horde-form remotemanagement">
|
|
<table>
|
|
<tr class="imp-remote-autoconfig">
|
|
<td class="horde-form-label"><?php echo _("E-mail Address") ?>:</td>
|
|
<td>
|
|
<input id="remote_email" name="remote_email" size="30" />
|
|
</td>
|
|
<td class="required"><?php echo Horde_Themes_Image::tag('required.png', array('alt' => '*')) ?></td>
|
|
</tr>
|
|
<tr class="imp-remote-autoconfig">
|
|
<td class="horde-form-label"><?php echo _("Password") ?>:</td>
|
|
<td>
|
|
<input id="remote_password" name="remote_password" type="password" size="30" />
|
|
</td>
|
|
<td class="required"><?php echo Horde_Themes_Image::tag('required.png', array('alt' => '*')) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="horde-form-label"><?php echo _("Label") ?>:</td>
|
|
<td>
|
|
<input id="remote_label" name="remote_label" size="30" />
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="horde-form-label"><?php echo _("Use secure connection?") ?></td>
|
|
<td>
|
|
<select id="remote_secure" name="remote_secure">
|
|
<option value="yes" selected="selected"><?php echo _("Required") ?></option>
|
|
<option value="auto"><?php echo _("Use if available") ?></option>
|
|
</select>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr class="imp-remote-autoconfig">
|
|
<td></td>
|
|
<td>
|
|
<input id="advanced_show" type="button" class="horde-cancel" value="<?php echo _("Show Advanced Setup") ?>" />
|
|
</tr>
|
|
<tr class="imp-remote-advanced" style="display:none">
|
|
<td class="horde-form-label"><?php echo _("Type") ?>:</td>
|
|
<td>
|
|
<select id="remote_type" name="remote_type">
|
|
<option value="imap" selected="selected"><?php echo _("IMAP") ?></option>
|
|
<option value="pop3"><?php echo _("POP3") ?></option>
|
|
</select>
|
|
</td>
|
|
<td class="required"><?php echo Horde_Themes_Image::tag('required.png', array('alt' => '*')) ?></td>
|
|
</tr>
|
|
<tr class="imp-remote-advanced" style="display:none">
|
|
<td class="horde-form-label"><?php echo _("Server") ?>:</td>
|
|
<td>
|
|
<input id="remote_server" name="remote_server" size="30" />
|
|
</td>
|
|
<td class="required"><?php echo Horde_Themes_Image::tag('required.png', array('alt' => '*')) ?></td>
|
|
</tr>
|
|
<tr class="imp-remote-advanced" style="display:none">
|
|
<td class="horde-form-label"><?php echo _("Username") ?>:</td>
|
|
<td>
|
|
<input id="remote_user" name="remote_user" size="30" />
|
|
</td>
|
|
<td class="required"><?php echo Horde_Themes_Image::tag('required.png', array('alt' => '*')) ?></td>
|
|
</tr>
|
|
<tr class="imp-remote-advanced" style="display:none">
|
|
<td class="horde-form-label"><?php echo _("Port") ?>:</td>
|
|
<td>
|
|
<input id="remote_port" name="remote_port" size="10" />
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<input id="autoconfig_button" type="button" class="horde-default imp-remote-autoconfig" value="<?php echo _("Next") ?>" />
|
|
<input id="add_button" type="button" class="horde-default imp-remote-advanced" style="display:none" value="<?php echo _("Save") ?>" />
|
|
<input id="cancel_button" type="button" class="horde-cancel" value="<?php echo _("Cancel") ?>" />
|
|
<?php else: ?>
|
|
<table class="horde-table remotemanagement">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo _("Label") ?></th>
|
|
<th><?php echo _("Username") ?></th>
|
|
<th><?php echo _("Server") ?></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if ($this->accounts): ?>
|
|
<?php foreach ($this->accounts as $v): ?>
|
|
<tr>
|
|
<td><?php echo $this->h($v->label) ?></td>
|
|
<td><?php echo $this->h($v->username) ?></td>
|
|
<td><?php echo $this->h($v->hostspec) ?></td>
|
|
<td>
|
|
<a class="remotedelete" href="#" data-id="<?php echo $v->id ?>"><?php echo $this->hordeImage('delete-small.png') ?></a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td class="noneconfigured" colspan="3"><?php echo _("No remote accounts configured") ?></td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<input id="new_button" type="submit" class="horde-create" value="<?php echo _("Add Account") ?>" />
|
|
<?php endif; ?>
|