This commit was generated by cvs2svn to compensate for changes in r4407,
[freeside.git] / rt / html / Elements / Login
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2005 Best Practical Solutions, LLC 
6 %#                                          <jesse@bestpractical.com>
7 %# 
8 %# (Except where explicitly superseded by other copyright notices)
9 %# 
10 %# 
11 %# LICENSE:
12 %# 
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %# 
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %# 
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 %# 
27 %# 
28 %# CONTRIBUTION SUBMISSION POLICY:
29 %# 
30 %# (The following paragraph is not intended to limit the rights granted
31 %# to you to modify and distribute this software under the terms of
32 %# the GNU General Public License and is only of importance to you if
33 %# you choose to contribute your changes and enhancements to the
34 %# community by submitting them to Best Practical Solutions, LLC.)
35 %# 
36 %# By intentionally submitting any modifications, corrections or
37 %# derivatives to this work, or any other work intended for use with
38 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
39 %# you are the copyright holder for those contributions and you grant
40 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
41 %# royalty-free, perpetual, license to use, copy, create derivative
42 %# works based on those contributions, and sublicense and distribute
43 %# those contributions and any derivatives thereof.
44 %# 
45 %# END BPS TAGGED BLOCK }}}
46 <%INIT>
47 if ($m->request_comp->path =~ '^/REST/\d+\.\d+/') {
48     $r->content_type("text/plain");
49     $m->error_format("text");
50     $m->out("RT/$RT::VERSION 401 Credentials required\n");
51     $m->out("\n$Error\n") if $Error;
52     $m->abort;
53 }
54 </%INIT>
55
56 <& /Elements/Callback, %ARGS, _CallbackName => 'Header' &>
57 <& /Elements/Header, Title => loc('Login'), Focus => 'user' &>
58
59 <DIV ALIGN=CENTER>
60 % if ($Error) {
61 <& /Elements/TitleBoxStart, title => loc('Error') &>
62 <% $Error %>
63 <& /Elements/TitleBoxEnd &>
64 % }
65 <BR>
66 <& /Elements/TitleBoxStart, width=> "40%", titleright => loc("RT [_1]", $RT::VERSION), title => loc('Login') ,
67 contentbg=>"#cccccc" &>
68
69 % unless ($RT::WebExternalAuth and !$RT::WebFallbackToInternalAuth) {
70 <FORM id="login" name="login" METHOD=POST ACTION="<% (UNIVERSAL::can($r, 'uri') && ($r->uri) =~ m!.*/(.*)!) %>" >
71 <TABLE BORDER=0 WIDTH=100%>
72 <TR ALIGN=RIGHT>
73 <TD ALIGN=RIGHT><&|/l&>Username</&>:</TD><TD ALIGN=LEFT><input name=user value="<%$user%>"></TD></TR>
74 <TR><TD ALIGN=RIGHT><&|/l&>Password</&>:</TD><TD ALIGN=LEFT><input type=password name=pass></TD></TR>
75 <TR><TD colspan=2 align=right>
76 <input type=submit Value="<&|/l&>Login</&>">
77 </TD></TR>
78 </TABLE>
79
80 %# Give callbacks a chance to add more control elements
81 <& /Elements/Callback, %ARGS &>
82
83 <&/Elements/TitleBoxEnd&>
84 % # From mason 1.0.1 forward, this doesn't work. in fact, it breaks things.
85 % # But on Mason 1.15 it's fixed again, so we still use it.
86 % # The code below iterates through everything in the passed in arguments
87 % # Preserving all the old parameters
88 % # This would be easier, except mason is 'smart' and calls multiple values
89 % # arrays rather than multiple hash keys
90 % my $key; my $val;
91 % foreach $key (keys %ARGS) {
92 %  if (($key ne 'user') and ($key ne 'pass')) {
93 %       if (ref($ARGS{$key}) =~ /ARRAY/) {
94 %               foreach $val (@{$ARGS{$key}}) {
95 <input type=hidden name="<%$key %>" value="<% $val %>">
96 %               }
97 %       }
98 %       else {
99 <input type="hidden" name="<% $key %>" value="<% $ARGS{$key} %>">
100 %       }
101 %  }
102 % }
103 </FORM>
104 % }
105 </DIV>
106
107 <BR>
108 <!-- TODO: not yet implemented
109 If you've forgotten your username or password, RT can <A
110 href="/NoAuth/Reminder.html">send you a reminder</a>.
111 -->
112 <BR>
113 <BR>
114 <BR>
115 <HR>
116 <& /Elements/Footer, Menu => 0 &>
117 <%ARGS>
118 $user => ""
119 $pass => undef
120 $goto => undef
121 $Error => undef
122 </%ARGS>