-
Notifications
You must be signed in to change notification settings - Fork 2
/
Formulario_registro.php
82 lines (74 loc) · 1.72 KB
/
Formulario_registro.php
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
<style>
h1{
text-align:center;
color:#00F;
border-bottom:dotted #0000FF;
width:50%;
margin:auto;
}
table{
border:1px solid #F00;
padding:20px 50px;
margin-top:50px;
}
body{
background-color:#FFC;
}
</style>
</head>
<body>
<h1>Registro de Artículos</h1>
<form name="form1" method="get" action="Insertar_Registro.php">
<table border="0" align="center">
<tr>
<td>Código Artículo</td>
<td><label for="c_art"></label>
<input type="text" name="c_art" id="c_art"></td>
</tr>
<tr>
<td>Sección</td>
<td><label for="seccion"></label>
<input type="text" name="seccion" id="seccion"></td>
</tr>
<tr>
<td>Nombre artículo</td>
<td><label for="n_art"></label>
<input type="text" name="n_art" id="n_art"></td>
</tr>
<tr>
<td>Precio</td>
<td><label for="precio"></label>
<input type="text" name="precio" id="precio"></td>
</tr>
<tr>
<td>Fecha</td>
<td><label for="fecha"></label>
<input type="text" name="fecha" id="fecha"></td>
</tr>
<tr>
<td>Importado</td>
<td><label for="importado"></label>
<input type="text" name="importado" id="importado"></td>
</tr>
<tr>
<td>País de Origen</td>
<td><label for="p_orig"></label>
<input type="text" name="p_orig" id="p_orig"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td align="center"><input type="submit" name="enviar" id="enviar" value="Enviar"></td>
<td align="center"><input type="reset" name="Borrar" id="Borrar" value="Borrar"></td>
</tr>
</table>
</form>
</body>
</html>