-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategoria_baja.html
59 lines (48 loc) · 1.25 KB
/
categoria_baja.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<title>North Sails - Sistema de Control de Stock</title>
<link rel="stylesheet" type="text/css" href="north.css" />
<script type="text/javascript">
function setfocus()
{
document.<?php echo $var['focus']; ?>.focus()
}
function confirma()
{
var envio = confirm("Desea eliminar el producto seleccionado?")
if (envio == true)
{
document.forms[0].submit();
}
}
</script>
</head>
<body class="ppal" onload = "setfocus()">
<div class="altas">
<fieldset>
<legend>Baja de producto</legend>
<?php echo $var['mensaje']; ?>
<table>
<form action="form_categoria_baja.php" method="post" target="_self" name="categoria_baja">
<input type="hidden" value="categoria_baja" size="10" name="formname" id="formname">
<tr>
<td>
<label for="id_categoria">Seleccionar el producto:</label>
</td>
<td>
<select name="id_categoria" id="id_categoria" class="obligatorio">
<option value="0">seleccionar</option>
<?php echo $var['categoria']; ?>
</select> *
</td>
</tr>
</table>
<center>
<br />Los casilleros marcados con * son obligatorios.<br />
<button type="button" name="enviar" value="enviar" onclick="confirma();">Eliminar</button>
</form>
</center>
</fieldset>
</div>
</body>
</html>