| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 
 | <!DOCTYPE html>
<html>
<head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>Réseau Dygnity Technology - Web Client </title>
        <?php 
                echo $this->headMeta(). PHP_EOL;
        		echo $this->headTitle(). PHP_EOL;
        		echo $this->headLink(). PHP_EOL;
        		echo $this->headScript(). PHP_EOL;
                $this->setEncoding('utf8');
 
                $theme="";
 
 
                $theme="Douceur";
 
                $this->jQuery()->addStylesheet($this->baseUrl() . '/js/jquery/css/themes/'.$theme.'/jquery-ui-1.8.16.custom.css')
                     ->setLocalPath($this-> baseUrl() . '/js/jquery-1.8.2.js')
                     ->setUiLocalPath($this->baseUrl() . '/js/jquery-ui.js')
                     ->enable()->uiEnable(); 
 
                     echo $this->jQuery(); 
                ?>
 
        <link rel="shortcut icon" href="<?php echo $this->baseUrl() . '/img/favicon.ico';?>"/>
 
        <script src="<?php echo $this->baseUrl();?>/js/jquery.dataTables.min.js" type="text/javascript"></script>
         <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl() . '/css/data_table.css';?>" />
        <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl() . '/css/main.css';?>" />
        <link type="text/css" rel="stylesheet" href="<?php echo $this->baseUrl() ?>/css/formulaire.css" />
        <script src="<?php echo $this->baseUrl();?>/js/sb_functions.js" type="text/javascript"></script>
 
 
 
</head>
 
 <div>
 
      <div style="text-align: center;height: 50px; background-color: white; ">
 
        <p style="display:inline; text-align: center; height: 50px!important;  
         line-height:1.2; width: 5%; float: left; font-family: cursive;">
         <img style="height: 60px; margin-left: -10px; margin-top: -10px; z-index: -1000;" 
         src="<?php echo $this->baseUrl() ?>/img/logo.png" alt="logo de l'entreprise"/>
         </p>
 
         <p style="display:inline;  float: left; line-height:50px; width: 89%; text-align:center; 
         font-size: 2em; letter-spacing: 5px; color:black; font-family: Myriad Pro;">
         Bienvenue sur le réseau  Dignity 
         </p>
 
 
     </div>                        
    </div>
 
<body >
        <?php echo $this->layout()->content; ?>
 
</body>
 
 
</html> | 
Partager