[5269592] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es"> |
---|
| 3 | |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="content-type" content="text/html;charset=utf-8" /> |
---|
[37d4bbf] | 6 | <title>Menú de inicio de los equipos OpenGnsys</title> |
---|
[5269592] | 7 | |
---|
| 8 | <style type="text/css"> |
---|
| 9 | body { background: #fff; font-size: 0.7em; } |
---|
| 10 | h1, h2 { font-size: 1.5em; } |
---|
| 11 | br {font-size: 0.2em; } |
---|
| 12 | a:link, a:visited { text-decoration: none; color:#900; font-weight: bold; } |
---|
| 13 | a:hover, a:active { color:#d90; } |
---|
| 14 | |
---|
| 15 | h1 { |
---|
| 16 | font-size: 1.5em; |
---|
| 17 | width: 100%; |
---|
| 18 | vertical-align: bottom; |
---|
| 19 | color: #555; |
---|
| 20 | background: transparent url('images/opengnsys.png') no-repeat top left; |
---|
| 21 | padding: 2em 0 1.5em 12em; |
---|
| 22 | margin-bottom: 1em; |
---|
| 23 | } |
---|
| 24 | |
---|
| 25 | dl { |
---|
| 26 | background: transparent url('images/xp_peque.png') no-repeat top left; |
---|
| 27 | padding: 0 0 1em 5em; |
---|
[6d5e5bc] | 28 | margin: 2em 10em; |
---|
[5269592] | 29 | } |
---|
| 30 | |
---|
| 31 | dl.windows { |
---|
| 32 | background-image: url('images/xp_peque.png'); |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | dl.linux { |
---|
| 36 | background-image: url('images/linux_peque.png'); |
---|
| 37 | } |
---|
| 38 | |
---|
| 39 | dl.apagar { |
---|
| 40 | background-image: url('images/poweroff.png'); |
---|
| 41 | } |
---|
| 42 | |
---|
| 43 | dt { float: left;} |
---|
[37d4bbf] | 44 | dd { margin: 1em 10em 1em 20em; } |
---|
| 45 | |
---|
| 46 | div.admin { |
---|
| 47 | margin: 1em; |
---|
| 48 | float; right; |
---|
| 49 | } |
---|
[5269592] | 50 | </style> |
---|
| 51 | |
---|
| 52 | </head> |
---|
| 53 | |
---|
| 54 | <body> |
---|
| 55 | |
---|
| 56 | <h1>Menú de opciones</h1> |
---|
[6d5e5bc] | 57 | |
---|
[5269592] | 58 | <dl class="windows"> |
---|
[6d5e5bc] | 59 | <dt><a href="command:bootOs 1 1" title="Iniciar sesión de Windows, accesskey: 1" accesskey="1">[1] Arrancar Windows.</a></dt> |
---|
[5269592] | 60 | <dd>Arranque normal de Windows sin modificaciones.</dd> |
---|
[918688e6] | 61 | <dt><a href="command+confirm:restoreImage REPO windows 1 1" title="Formatear el disco e instalar el sistema operativo Windows, accesskey: 2" accesskey="2">[2] Instalar Windows. </a></dt> |
---|
[5269592] | 62 | <dd>El proceso de instalación tardará unos minutos.</dd> |
---|
| 63 | </dl> |
---|
| 64 | |
---|
| 65 | <dl class="linux"> |
---|
[918688e6] | 66 | <dt><a href="command+output:bootOs 1 2" title="Iniciar sesión de Ubuntu 12, accesskey: 3" accesskey="3">[3] Arrancar GNU/Linux. </a></dt> |
---|
[5269592] | 67 | <dd>Arranque normal de <acronym title="GNU's not Unix">GNU</acronym>/Linux sin modificaciones.</dd> |
---|
[6d5e5bc] | 68 | |
---|
[918688e6] | 69 | <dt><a href="command+output+confirm:restoreImage REPO linux 1 2" title="Formatear el disco e instalar el sistema operativo GNU/Linux, accesskey: 4" accesskey="4">[4] Instalar GNU/Linux. </a></dt> |
---|
[5269592] | 70 | <dd>El proceso de instalación tardará unos minutos.</dd> |
---|
| 71 | </dl> |
---|
[f4322ae] | 72 | |
---|
[5269592] | 73 | <dl class="apagar"> |
---|
[6d5e5bc] | 74 | <dt><a href="command:poweroff" title="Apagar la máquina, accesskey: 0" accesskey="0">[0] Apagar. </a></dt> |
---|
[5269592] | 75 | <dd>Apagar el ordenador.</dd> |
---|
[6d5e5bc] | 76 | |
---|
| 77 | <dt><a href="command:reboot" title="Reiniciar la máquina, accesskey: 6" accesskey="6">[6] Reiniciar. </a></dt> |
---|
[5269592] | 78 | <dd>Reiniciar el ordenador.</dd> |
---|
| 79 | </dl> |
---|
[6d5e5bc] | 80 | |
---|
[37d4bbf] | 81 | <?php // Acceso a menú privado. |
---|
[a06dbac] | 82 | if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { |
---|
[37d4bbf] | 83 | $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; |
---|
| 84 | } else { |
---|
| 85 | $ip = $_SERVER['REMOTE_ADDR']; |
---|
| 86 | } |
---|
| 87 | ?> |
---|
| 88 | <div class="admin"><a href="../varios/acceso_operador.php?iph=<?php echo $ip ?>">Administración</a></div> |
---|
| 89 | |
---|
[5269592] | 90 | </body> |
---|
| 91 | </html> |
---|
[6d5e5bc] | 92 | |
---|