mirror of
https://github.com/perlbot/perlbuut-pastebin
synced 2025-06-08 14:46:47 -04:00
Fix param names
This commit is contained in:
parent
f81600812c
commit
2d305be097
1 changed files with 5 additions and 5 deletions
|
@ -56,12 +56,12 @@
|
||||||
[% BLOCK page_header %]
|
[% BLOCK page_header %]
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label for="name">Who: </label>
|
<label for="username">Who: </label>
|
||||||
<input size="20" name="name" placeholder="Anonymous" />
|
<input size="20" name="username" placeholder="Anonymous" />
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label for="chan">Where: </label>
|
<label for="channel">Where: </label>
|
||||||
<select name="chan" id="chan">
|
<select name="channel" id="channel">
|
||||||
<option value="">-- IRC Channel --</option>
|
<option value="">-- IRC Channel --</option>
|
||||||
[% FOREACH channel = channels %]
|
[% FOREACH channel = channels %]
|
||||||
<option value="[% channel.key %]">[% channel.value %]</option>
|
<option value="[% channel.key %]">[% channel.value %]</option>
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<label for="desc">What: </label>
|
<label for="desc">What: </label>
|
||||||
<input size="40" name="desc" placeholder="I broke this" maxlength="40"/>
|
<input size="40" name="description" placeholder="I broke this" maxlength="40"/>
|
||||||
<input type="button" value="Show supported modules" id="showmodules" style="float:right"/>
|
<input type="button" value="Show supported modules" id="showmodules" style="float:right"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue