29 lines
630 B
PHP
29 lines
630 B
PHP
<?php
|
|
|
|
class Template{
|
|
public static function render($content){
|
|
print "<!DOCTYPE html>";
|
|
print "<html>";
|
|
print " <head>";
|
|
print ' <meta name="viewport" content="width=device-width, initial-scale=1.0">';
|
|
print ' <style>
|
|
.errors{
|
|
width: 100%;
|
|
}
|
|
.ERROR{
|
|
background-color: #FAA;
|
|
}
|
|
.OK{
|
|
background-color: #AFA;
|
|
}
|
|
</style';
|
|
print " </head>";
|
|
print " <body>";
|
|
print $content;
|
|
print " </body>";
|
|
print "</html>";
|
|
}
|
|
}
|
|
|
|
?>
|