mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Update: Converted <form>s from GET to POST
This commit is contained in:
parent
7e76986741
commit
a53270065b
@ -53,7 +53,7 @@
|
|||||||
<!-- Form to add Users -->
|
<!-- Form to add Users -->
|
||||||
<xsl:if test="@can-adduser = 'true'">
|
<xsl:if test="@can-adduser = 'true'">
|
||||||
<h4>Add User</h4>
|
<h4>Add User</h4>
|
||||||
<form method="get" action="manageauth.xsl">
|
<form method="post" action="manageauth.xsl">
|
||||||
<label for="username" class="hidden">Username</label>
|
<label for="username" class="hidden">Username</label>
|
||||||
<input type="text" id="username" name="username" value="" placeholder="Username" required="required" />
|
<input type="text" id="username" name="username" value="" placeholder="Username" required="required" />
|
||||||
<label for="password" class="hidden">Password</label>
|
<label for="password" class="hidden">Password</label>
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="source">
|
<xsl:when test="source">
|
||||||
<p>Choose the mountpoint to which you want to move the listeners to:</p>
|
<p>Choose the mountpoint to which you want to move the listeners to:</p>
|
||||||
<form method="get" action="moveclients.xsl">
|
<form method="post" action="moveclients.xsl">
|
||||||
<label for="moveto" class="hidden">
|
<label for="moveto" class="hidden">
|
||||||
Move from <code><xsl:value-of select="current_source" /></code> to
|
Move from <code><xsl:value-of select="current_source" /></code> to
|
||||||
</label>
|
</label>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
<h3>Mountpoint <xsl:value-of select="@mount" /></h3>
|
<h3>Mountpoint <xsl:value-of select="@mount" /></h3>
|
||||||
<!-- Mount nav -->
|
<!-- Mount nav -->
|
||||||
<xsl:call-template name="mountnav" />
|
<xsl:call-template name="mountnav" />
|
||||||
<form method="get" action="/admin/metadata.xsl">
|
<form method="post" action="/admin/metadata.xsl">
|
||||||
<label for="metadata" class="hidden">Metadata</label>
|
<label for="metadata" class="hidden">Metadata</label>
|
||||||
<input type="text" id="metadata" name="song" value="" placeholder="Click to edit" required="required" />
|
<input type="text" id="metadata" name="song" value="" placeholder="Click to edit" required="required" />
|
||||||
<input type="hidden" name="mount" value="{@mount}" />
|
<input type="hidden" name="mount" value="{@mount}" />
|
||||||
|
Loading…
Reference in New Issue
Block a user