Skip to content

Commit

Permalink
HTML: Added "*Required" to various 'add new' fields (answers, questio…
Browse files Browse the repository at this point in the history
…ns, groups) to indicate which fields must be filled in.

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@210 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Apr 12, 2003
1 parent 3014581 commit cc67b84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/html.php
Expand Up @@ -364,7 +364,7 @@
$newquestion .= "\t<form action='$scriptname' name='addnewquestion' method='post'>\n";
$newquestion .= "\t<tr>\n";
$newquestion .= "\t\t<td align='right'>$setfont<b>Question Code:</b></font></td>\n";
$newquestion .= "\t\t<td><input type='text' size='20' name='title'></td></tr>\n";
$newquestion .= "\t\t<td><input type='text' size='20' name='title'><font color='red' face='verdana' size='1'>*Required</font></td></tr>\n";
$newquestion .= "\t<tr>\n";
$newquestion .= "\t\t<td align='right'>$setfont<b>Question:</b></font></td>\n";
$newquestion .= "\t\t<td><textarea cols='35' rows='3' name='question'></textarea></td>\n";
Expand Down Expand Up @@ -542,9 +542,9 @@
$newanswer .= "\t\t<b>$setfont<font color='white'>Create New Answer for Survey ID($sid), Group ID($gid), Question ID($qid)</b></font></font></td></tr>\n";
$newanswer .= "\t<tr><form action='$scriptname' name='addnewanswer' method='post'>\n";
$newanswer .= "\t\t<td align='right'>$setfont<b>Answer Code:</b></font></td>\n";
$newanswer .= "\t\t<td><input type='text' size='5' name='code'></td></tr>\n";
$newanswer .= "\t\t<td><input type='text' size='5' name='code' maxlength='5'><font color='red' face='verdana' size='1'>*Required</font></td></tr>\n";
$newanswer .= "\t<tr><td align='right'>$setfont<b>Answer:</b></font></td>\n";
$newanswer .= "\t\t<td><input type='text' name='answer'></td></tr>\n";
$newanswer .= "\t\t<td><input type='text' name='answer'><font color='red' face='verdana' size='1'>*Required</font></td></tr>\n";
$newanswer .= "\t<tr><td align='right'>$setfont<b>Default?</b></font></td>\n";
$newanswer .= "\t\t<td><input type='text' size='1' value='N' name='default'></td></tr>\n";
$newanswer .= "\t<tr><td colspan='2' align='center'><input type='submit' $btstyle value='Add Answer'></td></tr>\n";
Expand All @@ -561,7 +561,7 @@
$newgroup .= "\t\t<b>$setfont<font color='white'>Create New Group for Survey ID($sid)</font></font></b></td></tr>\n";
$newgroup .= "\t<tr><form action='$scriptname' name='addnewgroup' method='post'>\n";
$newgroup .= "\t\t<td align='right'>$setfont<b>Group Name:</b></font></td>\n";
$newgroup .= "\t\t<td><input type='text' size='40' name='group_name'></td></tr>\n";
$newgroup .= "\t\t<td><input type='text' size='40' name='group_name'><font color='red' face='verdana' size='1'>*Required</font></td></tr>\n";
$newgroup .= "\t<tr><td align='right'>$setfont<b>Group Description:</b>(optional)</font></td>\n";
$newgroup .= "\t\t<td><textarea cols='40' rows='4' name='description'></textarea></td></tr>\n";
$newgroup .= "\t<tr><td colspan='2' align='center'><input type='submit' $btstyle value='Create New Group'></td>\n";
Expand Down

0 comments on commit cc67b84

Please sign in to comment.