This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro-articulos.html
48 lines (48 loc) · 1.86 KB
/
registro-articulos.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Diseño de Interfaz</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=VT323&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section>
<div class="container">
<form>
<section>
<h2>Registro de articulos nuevos</h2>
<div class="panel">
<div class="row">
<a href="menu.html"><input class="atras" type="button" value="< ATRAS" id="btn1"/></a>
<img src="photos/registro.png" align="right" width="300" height="300">
<label for="id">ID del articulo</label>
<input type="text" name="id" id="id">
<label for="provider">ID del proveedor</label>
<input type="text" name="provider" id="provider">
<label for="code">Código de Barras</label>
<input type="text" name="code" id="code">
<label for="name">Nombre del artículo</label>
<input type="text" name="name" id="name">
<label for="amount">Cantidad a comprar</label>
<input type="text" name="amount" id="amount">
<label for="type">Tipo de producto</label>
<input type="text" name="type" id="type">
<label for="lote">Lote</label>
<input type="text" name="lote" id="lote">
<label for="buy">Precio de compra</label>
<input type="text" name="buy" id="buy">
<label for="sell">Precio de venta</label>
<input type="text" name="sell" id="sell">
<input class="atras" type="button" value="Añadir" id="btn2">
</div>
<div>
</div>
</section>
</form>
</div>
</body>