- input_macro() moved from hopobject to global (and echoes request data by default)
- added missing name-attribute for buttons
This commit is contained in:
parent
0b2da64e2a
commit
d5823a468a
20 changed files with 38 additions and 38 deletions
|
@ -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"> </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"> </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"> </td>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"> </td>
|
||||
<td nowrap="nowrap"><% this.input type="button" name="register" value="register" %> <% this.input type="button" name="cancel" value="cancel" %><br /> <br />* = optional</td>
|
||||
<td nowrap="nowrap"><% input type="button" name="register" value="register" %> <% input type="button" name="cancel" value="cancel" %><br /> <br />* = optional</td>
|
||||
</tr>
|
||||
</form>
|
||||
</table>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"> </td>
|
||||
<td nowrap="nowrap"><% this.input type="button" name="send" value="send" %> <% this.input type="button" name="cancel" value="cancel" %></td>
|
||||
<td nowrap="nowrap"><% input type="button" name="send" value="send" %> <% input type="button" name="cancel" value="cancel" %></td>
|
||||
</tr>
|
||||
</form>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue