blob: e4d9e7c3b49b7c795ecf2001e01855b5a52db043 (
plain)
1
2
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
|
<script>
function accion (opcion) {
document.forms[0].opcioncrear.value = opcion.name;
document.forms[0].action = "./boot_grub4dos_crear.php";
}
</script>
<td valign="top">
<TABLE width="150" align=left border=1 cellPadding=1 cellSpacing=1 class=tabla_datos >
<TR>
<TD width="150" height="45" valign="middle">
<input type="radio" name="boottype" value="bios" checked>bios
<input type="radio" name="boottype" value="uefi">uefi
</TD>
</TR>
<TR>
<TD id="crear" width="150" height="100" valign="middle"> <?php echo $TbMsg[3]?><br />
<input type="submit" value=<?php echo $TbMsg[0]?> name="crear" onclick="accion(this)">
</TD>
</TR>
<TR>
<TD id="modificar" width="150" height="100" valign="middle"> <?php echo $TbMsg[4]?><br />
<input type="submit" value=<?php echo $TbMsg[1]?> name="modificar" onclick="accion(this)">
</TD>
</TR>
<TR>
<TD id="eliminar" width="150" height="100" valign="middle"> <?php echo $TbMsg[5]?><br />
<input type="submit" value=<?php echo $TbMsg[2]?> name="eliminar" onclick="accion(this)">
</TD>
</TR>
<TR>
<TD width="150" height="150" valign="middle"> </TD>
</TR>
</TABLE>
</td>
|