summaryrefslogtreecommitdiff
path: root/rt/webrt/Elements/Submit
blob: 7b75e9e982f082790892761d73f3b2e79f0013a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<TABLE WIDTH=100% BGCOLOR="<%$color%>" CELLSPACING=0 BORDER=0 CELLPADDING=0 >
<TR>
% if ($Reset) {
<TD>
<FONT COLOR=#ffd800 >
<INPUT TYPE=RESET VALUE="<%$ResetLabel%>">
</FONT>
</TD>
%}
<TD>
&nbsp;
</TD>
<TD ALIGN=RIGHT VALIGN=CENTER>

<FONT COLOR=#ffd800>

% if ($AlternateLabel) {
<B><%$AlternateCaption%>
<INPUT TYPE=SUBMIT
%if ($Name) {
NAME="<%$Name%>"
%}
VALUE='<%$AlternateLabel%>'></B>
% }

<B><%$Caption%>
<INPUT TYPE=SUBMIT
%if ($Name) {
NAME="<%$Name%>"
% }
 VALUE='<%$Label%>'></B></FONT>
</TD>
</TR>
</TABLE>
<%ARGS>
$color => "#336699"
$Caption => undef
$AlternateCaption => undef
$AlternateLabel => undef
$Label => 'Submit'
$Name => undef
$Reset => undef
$ResetLabel => 'Reset'
</%ARGS>