Files
EdgeAdmin/web/views/@default/servers/server/settings/headers/createSetPopup.html

23 lines
816 B
HTML
Raw Normal View History

2020-09-16 20:29:13 +08:00
{$layout "layout_popup"}
<h3>设置Header</h3>
2020-11-10 12:47:24 +08:00
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
2020-09-16 20:29:13 +08:00
<input type="hidden" name="headerPolicyId" :value="headerPolicyId"/>
<table class="ui table definition selectable">
<tr>
<td class="title">名称<em>Name</em></td>
<td>
<input type="text" name="name" value="" maxlength="200" placeholder="类似于Server、Content-Type之类" ref="focus"/>
2021-07-19 10:48:53 +08:00
<p class="comment">请注意名称的大小写如无特殊需求Header名称的格式通常为<code-label>Xxx</code-label>或者<code-label>Xxx-Yyy</code-label></p>
2020-09-16 20:29:13 +08:00
</td>
</tr>
<tr>
<td><em>Value</em></td>
<td>
<input type="text" name="value" maxlength="500"/>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>