2011-04-16 21:29:54 +00:00
<! DOCTYPE html >
< html >
2011-03-02 10:56:48 +00:00
< head >
< title > ownCloud </ title >
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " />
2011-04-16 17:49:18 +00:00
< link rel = " shortcut icon " href = " <?php echo image_path('', 'favicon.png'); ?> " />< link rel = " apple-touch-icon-precomposed " href = " <?php echo image_path('', 'favicon-touch.png'); ?> " />
2011-08-19 20:53:07 +00:00
< ? php foreach ( $_ [ 'cssfiles' ] as $cssfile ) : ?>
2011-03-09 20:57:00 +00:00
< link rel = " stylesheet " href = " <?php echo $cssfile ; ?> " type = " text/css " media = " screen " />
< ? php endforeach ; ?>
2011-06-19 21:33:34 +00:00
< script type = " text/javascript " >
var oc_webroot = '<?php global $WEBROOT; echo $WEBROOT; ?>' ;
2011-08-19 20:53:07 +00:00
</ script >
< ? php foreach ( $_ [ 'jsfiles' ] as $jsfile ) : ?>
2011-03-09 20:57:00 +00:00
< script type = " text/javascript " src = " <?php echo $jsfile ; ?> " ></ script >
< ? php endforeach ; ?>
2011-06-24 16:02:19 +00:00
< ? php foreach ( $_ [ 'headers' ] as $header ) : ?>
< ? php
echo '<' . $header [ 'tag' ] . ' ' ;
foreach ( $header [ 'attributes' ] as $name => $value ){
echo " $name =' $value ' " ;
};
2011-08-19 20:53:07 +00:00
echo '/>' ;
2011-06-24 16:02:19 +00:00
?>
< ? php endforeach ; ?>
2011-03-02 10:56:48 +00:00
</ head >
2011-04-17 13:49:54 +00:00
< body id = " body-login " >
2011-08-08 15:57:45 +00:00
< div id = " login " >
2011-08-09 08:30:37 +00:00
< header >< div id = " header " >
< img src = " <?php echo image_path('', 'owncloud-logo-medium-white.png'); ?> " alt = " ownCloud " />
</ div ></ header >
2011-08-08 15:57:45 +00:00
< ? php echo $_ [ 'content' ]; ?>
</ div >
2011-08-15 15:02:26 +00:00
< footer >< p class = " info " >< a href = " http://owncloud.org/ " > ownCloud </ a > < ? php echo $l -> t ( 'gives you the freedom to control your own data on the internet' ); ?> </p></footer>
2011-03-02 10:56:48 +00:00
</ body >
</ html >