projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Administrationsbereich mit Menüsystem versehen
[kivitendo-erp.git]
/
SL
/
Layout
/
Login.pm
1
package SL::Layout::Login;
2
3
use strict;
4
use parent qw(SL::Layout::Base);
5
6
sub new {
7
my ($class, @slurp) = @_;
8
9
my $self = $class->SUPER::new(@slurp);
10
11
$self->add_sub_layouts([
12
SL::Layout::None->new,
13
]);
14
15
$self;
16
}
17
18
sub start_content {
19
"<div id='login' class='login'>\n";
20
}
21
22
sub end_content {
23
"</div>\n";
24
}
25
26
1;