summaryrefslogtreecommitdiffstats
path: root/templates/show_add_access.inc
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-19 18:05:40 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-19 18:05:40 +0000
commit0c0262b8a7326d1e2effbce5d422fd672300d114 (patch)
treee84c501cccbb2e7d3d9655685020fd7a266a7170 /templates/show_add_access.inc
parent49f48af532c2d3196d94b444c3514bdb1a499436 (diff)
downloadampache-0c0262b8a7326d1e2effbce5d422fd672300d114.tar.gz
ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.tar.bz2
ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.zip
mother of all commits...
Diffstat (limited to 'templates/show_add_access.inc')
-rw-r--r--templates/show_add_access.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/show_add_access.inc b/templates/show_add_access.inc
index 89ea79e5..2d9f1074 100644
--- a/templates/show_add_access.inc
+++ b/templates/show_add_access.inc
@@ -32,33 +32,33 @@
<p><?php print _("Use the form below to add a host that you want to have access to your Ampache catalog."); ?></p>
-<p>
+
<form name="update_catalog" method="post" enctype="multipart/form-data" action="<?= conf('web_path'); ?>/admin/access.php">
<table cellpadding="5" cellspacing="0" border="0">
<tr>
<td><?php print _("Name"); ?>: </td>
<td>
- <input type="text" name="name" value="<?= $_REQUEST['name']; ?>" size="30">
+ <input type="text" name="name" value="<?= $_REQUEST['name']; ?>" size="30" />
</td>
</tr>
<tr>
<td><?php print _("Start IP Address"); ?>:</td>
<td>
- <input type="text" name="start" value="<?= $_REQUEST['start']; ?>" size="20" maxlength="15">
+ <input type="text" name="start" value="<?= $_REQUEST['start']; ?>" size="20" maxlength="15" />
</td>
</tr>
<tr>
<td><?php print _("End IP Address"); ?>:</td>
<td>
- <input type="text" name="end" value="<?= $_REQUEST['end']; ?>" size="20" maxlength="15">
+ <input type="text" name="end" value="<?= $_REQUEST['end']; ?>" size="20" maxlength="15" />
</td>
</tr>
<tr>
<td><?php print _("Level"); ?>:</td>
<td>
<select name="level">
- <option value="5" SELECTED>Demo</option>
+ <option selected="selected" value="5" >Demo</option>
<option value="25">Stream</option>
<option value="50">Stream/Download</option>
<option value="75">XML-RPC</option>
@@ -68,8 +68,8 @@
<tr>
<td>&nbsp;</td>
<td>
- <input type="hidden" name="action" value="add_host">
- <input type="submit" value="<?php print _("Add Host"); ?>">
+ <input type="hidden" name="action" value="add_host" />
+ <input type="submit" value="<?php print _("Add Host"); ?>" />
</td>
</tr>
</table>