htdocs: use span element for maxChars.

This commit is contained in:
XhmikosR 2013-07-31 17:07:52 +03:00
parent 67afb6b2ba
commit 05dc0433fb
3 changed files with 3 additions and 2 deletions

View File

@ -39,7 +39,7 @@
<div class="wrap"> <div class="wrap">
<h2>Online Demo</h2> <h2>Online Demo</h2>
<form action="/demo/report/" name="f" onsubmit="return checkCodeLength();" method="post" target="_blank"> <form action="/demo/report/" name="f" onsubmit="return checkCodeLength();" method="post" target="_blank">
<p><label for="code">Enter code:</label> <i class="maxChars">(max 1024 characters)</i><br /> <p><label for="code">Enter code:</label> <span class="maxChars">(max 1024 characters)</span><br />
<textarea id="code" name="code" rows="20" cols="80"> <textarea id="code" name="code" rows="20" cols="80">
void f() void f()
{ {

View File

@ -32,6 +32,7 @@
margin-left: 2em; margin-left: 2em;
color: #888; color: #888;
font-size: smaller; font-size: smaller;
font-style: italic;
} }
/** /**

File diff suppressed because one or more lines are too long