- input_macro() moved from hopobject to global (and echoes request data by default)

- added missing name-attribute for buttons
This commit is contained in:
Robert Gaggl 2002-07-19 08:42:32 +00:00
parent 0b2da64e2a
commit d5823a468a
20 changed files with 38 additions and 38 deletions

View file

@ -2,19 +2,19 @@
<form method="post" action="<% response.action %>">
<tr>
<td class="small" nowrap="nowrap">Username:</td>
<td nowrap="nowrap"><% this.input type="text" name="name" width="15" %></td>
<td nowrap="nowrap"><% input type="text" name="name" width="15" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">Password:</td>
<td nowrap="nowrap"><% this.input type="password" name="password" width="15" %></td>
<td nowrap="nowrap"><% input type="password" name="password" width="15" %></td>
</tr>
<tr>
<td nowrap="nowrap">&nbsp;</td>
<td class="small" nowrap="nowrap"><% this.input type="checkbox" name="remember" %>remember me</td>
<td class="small" nowrap="nowrap"><% input type="checkbox" name="remember" %>remember me</td>
</tr>
<tr>
<td nowrap="nowrap">&nbsp;</td>
<td nowrap="nowrap"><% this.input type="button" name="login" value="login" %></td>
<td nowrap="nowrap"><% input type="button" name="login" value="login" %></td>
</tr>
<tr>
<td nowrap="nowrap">&nbsp;</td>

View file

@ -3,8 +3,8 @@
<table border="0" cellspacing="0" cellpadding="0">
<form method="post" action="<% response.action %>">
<tr>
<td nowrap="nowrap"><% this.input type="text" name="keyword" %></td>
<td nowrap="nowrap"><% this.input type="button" value="search" %></td>
<td nowrap="nowrap"><% input type="text" name="keyword" %></td>
<td nowrap="nowrap"><% input type="button" name="search" value="search" %></td>
</tr>
</form>
</table>

View file

@ -2,27 +2,27 @@
<form method="post" action="<% response.action %>">
<tr>
<td class="small" nowrap="nowrap">Username:</td>
<td nowrap="nowrap"><% this.input type="text" name="name" %></td>
<td nowrap="nowrap"><% input type="text" name="name" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">Password:</td>
<td nowrap="nowrap"><% this.input type="password" name="password1" %></td>
<td nowrap="nowrap"><% input type="password" name="password1" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">type again:</td>
<td nowrap="nowrap"><% this.input type="password" name="password2" %></td>
<td nowrap="nowrap"><% input type="password" name="password2" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">eMail:</td>
<td nowrap="nowrap"><% this.input type="text" name="email" %></td>
<td nowrap="nowrap"><% input type="text" name="email" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">Url:*</td>
<td nowrap="nowrap"><% this.input type="text" name="url" %></td>
<td nowrap="nowrap"><% input type="text" name="url" %></td>
</tr>
<tr>
<td nowrap="nowrap">&nbsp;</td>
<td nowrap="nowrap"><% this.input type="button" name="register" value="register" %>&nbsp;<% this.input type="button" name="cancel" value="cancel" %><br />&nbsp;<br />* = optional</td>
<td nowrap="nowrap"><% input type="button" name="register" value="register" %>&nbsp;<% input type="button" name="cancel" value="cancel" %><br />&nbsp;<br />* = optional</td>
</tr>
</form>
</table>

View file

@ -5,7 +5,7 @@
</tr>
<% response.searchresult %>
<tr>
<td colspan="2" nowrap="nowrap"><% this.input type="button" name="add" value="add to members" %></td>
<td colspan="2" nowrap="nowrap"><% input type="button" name="add" value="add to members" %></td>
</tr>
</form>
</table>

View file

@ -4,11 +4,11 @@
<form method="post" action="<% response.action %>">
<tr>
<td class="small" nowrap="nowrap">eMail:</td>
<td nowrap="nowrap"><% this.input type="text" name="email" %></td>
<td nowrap="nowrap"><% input type="text" name="email" %></td>
</tr>
<tr>
<td nowrap="nowrap">&nbsp;</td>
<td nowrap="nowrap"><% this.input type="button" name="send" value="send" %>&nbsp;<% this.input type="button" name="cancel" value="cancel" %></td>
<td nowrap="nowrap"><% input type="button" name="send" value="send" %>&nbsp;<% input type="button" name="cancel" value="cancel" %></td>
</tr>
</form>
</table>