import rt 3.6.4
[freeside.git] / rt / html / Elements / Login
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/copyleft/gpl.html.
28 %# 
29 %# 
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %# 
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %# 
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %# 
47 %# END BPS TAGGED BLOCK }}}
48 <%INIT>
49 if ($m->request_comp->path =~ '^/REST/\d+\.\d+/') {
50     $r->content_type("text/plain");
51     $m->error_format("text");
52     $m->out("RT/$RT::VERSION 401 Credentials required\n");
53     $m->out("\n$Error\n") if $Error;
54     $m->abort;
55 }
56
57 my $req_uri;
58
59 if (UNIVERSAL::can($r, 'uri') and $r->uri =~ m{.*/(.*)}) {
60     $req_uri = $1;
61 }
62
63 my $form_action = defined $goto             ? $goto
64                 : defined $req_uri          ? $req_uri
65                 :                             $RT::WebPath
66                 ;
67 </%INIT>
68
69 <& /Elements/Callback, %ARGS, _CallbackName => 'Header' &>
70 <& /Elements/Header, Title => loc('Login'), Focus => 'user' &>
71
72 %# End of div#quickbar from /Elements/Header
73 </div>
74
75 <div id="body" class="login-body">
76
77 % if ($Error) {
78 <&| "/Widgets/TitleBox", title => loc('Error'), hideable => 0  &>
79 <% $Error %>
80 </&>
81 % }
82
83 <& /Elements/Callback, %ARGS, _CallbackName => 'BeforeForm' &>
84
85 <div id="login-box">
86 <&| /Widgets/TitleBox, title => loc('Login'), titleright => $RT::VERSION, hideable => 0 &>
87
88 % unless ($RT::WebExternalAuth and !$RT::WebFallbackToInternalAuth) {
89 <form id="login" name="login" method="post" action="<% $form_action %>">
90
91 <div class="input-row">
92     <span class="label"><&|/l&>Username</&>:</span>
93     <span class="input"><input name="user" value="<%$user%>" id="user" /></span>
94 </div>
95
96 <div class="input-row">
97     <span class="label"><&|/l&>Password</&>:</span>
98     <span class="input"><input type="password" name="pass" /></span>
99 </div>
100
101 <div class="button-row">
102     <span class="input"><input type="submit" class="button" value="<&|/l&>Login</&>" /></span>
103 </div>
104
105 %# Give callbacks a chance to add more control elements
106 <& /Elements/Callback, %ARGS &>
107
108 % # From mason 1.0.1 forward, this doesn't work. in fact, it breaks things.
109 % # But on Mason 1.15 it's fixed again, so we still use it.
110 % # The code below iterates through everything in the passed in arguments
111 % # Preserving all the old parameters
112 % # This would be easier, except mason is 'smart' and calls multiple values
113 % # arrays rather than multiple hash keys
114 % my $key; my $val;
115 % foreach $key (keys %ARGS) {
116 %  if (($key ne 'user') and ($key ne 'pass')) {
117 %       if (ref($ARGS{$key}) =~ /ARRAY/) {
118 %               foreach $val (@{$ARGS{$key}}) {
119 <input type="hidden" class="hidden" name="<%$key %>" value="<% $val %>" />
120 %               }
121 %       }
122 %       else {
123 <input type="hidden" class="hidden" name="<% $key %>" value="<% $ARGS{$key} %>" />
124 %       }
125 %  }
126 % }
127 </form>
128 % }
129 </&>
130 </div><!-- #login-box -->
131 <& /Elements/Callback, %ARGS, _CallbackName => 'AfterForm' &>
132 <& /Elements/Footer, Menu => 0 &>
133 <%ARGS>
134 $user => ""
135 $pass => undef
136 $goto => undef
137 $Error => undef
138 </%ARGS>