mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
Moved sizes of some inputs into css
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@776 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -12,20 +12,20 @@
|
||||
<div>
|
||||
<? IF Edit ?>
|
||||
<input type="hidden" name="user" value="<? VAR Username ESC=HTML ?>" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" disabled="disabled" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" disabled="disabled" />
|
||||
<? ELSE ?>
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" />
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" />
|
||||
<? ENDIF ?>
|
||||
</div>
|
||||
|
||||
<div class="inputlabel">Passwort:</div>
|
||||
<div><input type="password" name="password" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password" class="half" maxlength="16" /></div>
|
||||
<div class="inputlabel">Passwort wiederholen:</div>
|
||||
<div><input type="password" name="password2" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password2" class="half" maxlength="16" /></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="inputlabel">Erlaubte IPs:</div>
|
||||
<textarea name="allowedips" cols="40" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<textarea name="allowedips" class="half"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea>
|
||||
<? IF OwnIP ?>
|
||||
@@ -45,25 +45,25 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Nickname:</div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Alt. Nickname:</div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Ident:</div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">StatusPrefix:</div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" size="16" maxlength="5" /></div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" class="half" maxlength="5" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Realer/Voller Name:</div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" size="68" maxlength="256" /></div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -80,13 +80,13 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">QuitMsg:</div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" size="96" maxlength="256" /></div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Servers:</div>
|
||||
<div><textarea name="servers" cols="40" rows="5"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<div><textarea name="servers" class="half"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
@@ -114,7 +114,7 @@
|
||||
<input type="checkbox" name="loadmod" id="lm_<? VAR Name ESC=HTML ?>" value="<? VAR Name ESC=HTML ?>"<? IF Checked ?> checked="checked"<? ENDIF ?><? IF Disabled ?> disabled="disabled"<? ENDIF ?> /><label for="lm_<? VAR Name ESC=HTML ?>"> <? VAR Name ESC=HTML ?></label>
|
||||
</td>
|
||||
<td>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input class="third" type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
</td>
|
||||
<td><? VAR Description ESC=HTML ?></td>
|
||||
</tr>
|
||||
@@ -131,7 +131,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Vorgabe Modi:</div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" size="32" maxlength="32" /></div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" class="third" maxlength="32" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -179,7 +179,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Größe des :</div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" size="32" maxlength="9" /></div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" class="third" maxlength="9" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">CTCP Antworten:</div>
|
||||
<div><textarea name="ctcpreplies" cols="40" rows="5"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<div><textarea name="ctcpreplies" class="half"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
|
||||
@@ -33,6 +33,22 @@ table thead {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input.full, textarea.full {
|
||||
width: 580px;
|
||||
}
|
||||
|
||||
input.half, textarea.half {
|
||||
width: 280px;
|
||||
}
|
||||
|
||||
input.third, textarea.third {
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
#banner {
|
||||
border-bottom: 2px solid #000;
|
||||
text-align: center;
|
||||
|
||||
@@ -12,20 +12,20 @@
|
||||
<div>
|
||||
<? IF Edit ?>
|
||||
<input type="hidden" name="user" value="<? VAR Username ESC=HTML ?>" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" disabled="disabled" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" disabled="disabled" />
|
||||
<? ELSE ?>
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" />
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" />
|
||||
<? ENDIF ?>
|
||||
</div>
|
||||
|
||||
<div class="inputlabel">Password:</div>
|
||||
<div><input type="password" name="password" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password" class="half" maxlength="16" /></div>
|
||||
<div class="inputlabel">Confirm Password:</div>
|
||||
<div><input type="password" name="password2" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password2" class="half" maxlength="16" /></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="inputlabel">Allowed IPs:</div>
|
||||
<textarea name="allowedips" cols="40" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<textarea name="allowedips" class="half"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea>
|
||||
<? IF OwnIP ?>
|
||||
@@ -45,25 +45,25 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Nick:</div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">AltNick:</div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Ident:</div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">StatusPrefix:</div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" size="16" maxlength="5" /></div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" class="half" maxlength="5" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">RealName:</div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" size="68" maxlength="256" /></div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -80,13 +80,13 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">QuitMsg:</div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" size="96" maxlength="256" /></div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Servers:</div>
|
||||
<div><textarea name="servers" cols="40" rows="5"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<div><textarea name="servers" class="half"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
@@ -114,7 +114,7 @@
|
||||
<input type="checkbox" name="loadmod" id="lm_<? VAR Name ESC=HTML ?>" value="<? VAR Name ESC=HTML ?>"<? IF Checked ?> checked="checked"<? ENDIF ?><? IF Disabled ?> disabled="disabled"<? ENDIF ?> /><label for="lm_<? VAR Name ESC=HTML ?>"> <? VAR Name ESC=HTML ?></label>
|
||||
</td>
|
||||
<td>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input class="third" type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
</td>
|
||||
<td><? VAR Description ESC=HTML ?></td>
|
||||
</tr>
|
||||
@@ -131,7 +131,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Default Modes:</div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" size="32" maxlength="32" /></div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" class="third" maxlength="32" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -179,7 +179,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Playback Buffer Size:</div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" size="32" maxlength="9" /></div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" class="third" maxlength="9" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">CTCP Replies:</div>
|
||||
<div><textarea name="ctcpreplies" cols="40" rows="5"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<div><textarea name="ctcpreplies" class="half"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
|
||||
@@ -33,6 +33,22 @@ table thead {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input.full, textarea.full {
|
||||
width: 620px;
|
||||
}
|
||||
|
||||
input.half, textarea.half {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
input.third, textarea.third {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
#banner {
|
||||
border-bottom: 2px solid #000;
|
||||
text-align: center;
|
||||
|
||||
@@ -12,20 +12,20 @@
|
||||
<div>
|
||||
<? IF Edit ?>
|
||||
<input type="hidden" name="user" value="<? VAR Username ESC=HTML ?>" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" disabled="disabled" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" disabled="disabled" />
|
||||
<? ELSE ?>
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" />
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" />
|
||||
<? ENDIF ?>
|
||||
</div>
|
||||
|
||||
<div class="inputlabel">Passwort:</div>
|
||||
<div><input type="password" name="password" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password" class="half" maxlength="16" /></div>
|
||||
<div class="inputlabel">Passwort wiederholen:</div>
|
||||
<div><input type="password" name="password2" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password2" class="half" maxlength="16" /></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="inputlabel">Erlaubte IPs:</div>
|
||||
<textarea name="allowedips" cols="40" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<textarea name="allowedips" class="half"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea>
|
||||
<? IF OwnIP ?>
|
||||
@@ -45,25 +45,25 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Nickname:</div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Alt. Nickname:</div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Ident:</div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">StatusPrefix:</div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" size="16" maxlength="5" /></div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" class="half" maxlength="5" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Realer/Voller Name:</div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" size="68" maxlength="256" /></div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
|
||||
<div class="subsection">
|
||||
@@ -79,13 +79,13 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">QuitMsg:</div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" size="96" maxlength="256" /></div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Servers:</div>
|
||||
<div><textarea name="servers" cols="40" rows="5"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<div><textarea name="servers" class="half"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
@@ -113,7 +113,7 @@
|
||||
<input type="checkbox" name="loadmod" id="lm_<? VAR Name ESC=HTML ?>" value="<? VAR Name ESC=HTML ?>"<? IF Checked ?> checked="checked"<? ENDIF ?><? IF Disabled ?> disabled="disabled"<? ENDIF ?> /><label for="lm_<? VAR Name ESC=HTML ?>"> <? VAR Name ESC=HTML ?></label>
|
||||
</td>
|
||||
<td>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input class="third" type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
</td>
|
||||
<td><? VAR Description ESC=HTML ?></td>
|
||||
</tr>
|
||||
@@ -130,7 +130,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Vorgabe Modi:</div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" size="32" maxlength="32" /></div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" class="third" maxlength="32" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -178,7 +178,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Größe des Wiedergabebuffers:</div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" size="32" maxlength="9" /></div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" class="third" maxlength="9" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -191,7 +191,7 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">CTCP Antworten:</div>
|
||||
<div><textarea name="ctcpreplies" cols="40" rows="5"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<div><textarea name="ctcpreplies" class="half"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
|
||||
@@ -54,6 +54,22 @@ table thead {
|
||||
background-color: #bbb;
|
||||
}
|
||||
|
||||
input.full, textarea.full {
|
||||
width: 580px;
|
||||
}
|
||||
|
||||
input.half, textarea.half {
|
||||
width: 280px;
|
||||
}
|
||||
|
||||
input.third, textarea.third {
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
#main {
|
||||
width: 680px;
|
||||
clear: both;
|
||||
|
||||
@@ -12,20 +12,20 @@
|
||||
<div>
|
||||
<? IF Edit ?>
|
||||
<input type="hidden" name="user" value="<? VAR Username ESC=HTML ?>" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" disabled="disabled" />
|
||||
<input type="text" name="newuser" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" disabled="disabled" />
|
||||
<? ELSE ?>
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" size="32" maxlength="128" />
|
||||
<input type="text" name="user" value="<? VAR Username ESC=HTML ?>" class="half" maxlength="128" />
|
||||
<? ENDIF ?>
|
||||
</div>
|
||||
|
||||
<div class="inputlabel">Password:</div>
|
||||
<div><input type="password" name="password" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password" class="half" maxlength="16" /></div>
|
||||
<div class="inputlabel">Confirm Password:</div>
|
||||
<div><input type="password" name="password2" size="32" maxlength="16" /></div>
|
||||
<div><input type="password" name="password2" class="half" maxlength="16" /></div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="inputlabel">Allowed IPs:</div>
|
||||
<textarea name="allowedips" cols="40" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<textarea name="allowedips" class="half"><? LOOP AllowedHostLoop ?><? VAR Host ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea>
|
||||
<? IF OwnIP ?>
|
||||
@@ -45,25 +45,25 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Nick:</div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="nick" value="<? VAR Nick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">AltNick:</div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="altnick" value="<? VAR AltNick ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Ident:</div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" size="22" maxlength="128" /></div>
|
||||
<div><input type="text" name="ident" value="<? VAR Ident ESC=HTML ?>" class="half" maxlength="128" /></div>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">StatusPrefix:</div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" size="16" maxlength="5" /></div>
|
||||
<div><input type="text" name="statusprefix" value="<? VAR StatusPrefix ESC=HTML ?>" class="half" maxlength="5" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">RealName:</div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" size="68" maxlength="256" /></div>
|
||||
<div><input type="text" name="realname" value="<? VAR RealName ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
|
||||
<div class="subsection">
|
||||
@@ -79,13 +79,13 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">QuitMsg:</div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" size="96" maxlength="256" /></div>
|
||||
<div><input type="text" name="quitmsg" value="<? VAR QuitMsg ESC=HTML ?>" class="full" maxlength="256" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Servers:</div>
|
||||
<div><textarea name="servers" cols="40" rows="5"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<div><textarea name="servers" class="half"><? LOOP ServerLoop ?><? VAR Server ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
@@ -113,7 +113,7 @@
|
||||
<input type="checkbox" name="loadmod" id="lm_<? VAR Name ESC=HTML ?>" value="<? VAR Name ESC=HTML ?>"<? IF Checked ?> checked="checked"<? ENDIF ?><? IF Disabled ?> disabled="disabled"<? ENDIF ?> /><label for="lm_<? VAR Name ESC=HTML ?>"> <? VAR Name ESC=HTML ?></label>
|
||||
</td>
|
||||
<td>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
<? IF Disabled ?><? VAR Args ESC=HTML ?><? ELSE ?><input class="third" type="text" name="modargs_<? VAR Name ESC=HTML ?>" value="<? VAR Args ESC=HTML ?>" /><? ENDIF ?>
|
||||
</td>
|
||||
<td><? VAR Description ESC=HTML ?></td>
|
||||
</tr>
|
||||
@@ -130,7 +130,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Default Modes:</div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" size="32" maxlength="32" /></div>
|
||||
<div><input type="text" name="chanmodes" value="<? VAR DefaultChanModes ESC=HTML ?>" class="third" maxlength="32" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -178,7 +178,7 @@
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Playback Buffer Size:</div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" size="32" maxlength="9" /></div>
|
||||
<div><input type="text" name="bufsize" value="<? VAR BufferCount ESC=HTML ?>" class="third" maxlength="9" /></div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
@@ -191,7 +191,7 @@
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">CTCP Replies:</div>
|
||||
<div><textarea name="ctcpreplies" cols="40" rows="5"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<div><textarea name="ctcpreplies" class="half"><? LOOP CTCPLoop ?><? VAR CTCP ESC=HTML ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
</div>
|
||||
|
||||
@@ -54,6 +54,22 @@ table thead {
|
||||
background-color: #bbb;
|
||||
}
|
||||
|
||||
input.full, textarea.full {
|
||||
width: 620px;
|
||||
}
|
||||
|
||||
input.half, textarea.half {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
input.third, textarea.third {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
#main {
|
||||
width: 680px;
|
||||
clear: both;
|
||||
|
||||
Reference in New Issue
Block a user