-
Notifications
You must be signed in to change notification settings - Fork 5
/
ControlMovilizacion.php
47 lines (34 loc) · 1.7 KB
/
ControlMovilizacion.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
<?php
require('headerAdmin.php');
session_start();
?>
<!DOCTYPE html>
<html lang="es">
<head>
<link rel="stylesheet" href="css/controlM.css" />
</head>
<body>
<form id="form" method="post" enctype="multipart/form-data">
<h2> Control de Movilizacion de animales</h2><br/>
<div class="b1In">
<input class="dato" type="text" name="cantFincas">
<input class="dato" type="text" name="guiasOficiales">
<input class="dato" type="text" name="copiasGuiasR">
<input class="dato" type="text" name="guiasDB">
<input class="dato" type="text" name="procesosDB">
<input class="dato" type="text" name="cantFincas">
</div>
<div class="b1text">
<label class="label" >N° Finca de bovinos inscritos</label><br/>
<label class="label">N° guias oficiales entregadas</label><br/>
<label class="label">N° guias recibidas</label><br/>
<label class="label">N° guias procesadas </label><br/>
<label class="label">N° procesos en base de datos</label><br/>
<label class="label">N° guias entregadas a oficiales</label><br/><br/>
<button type="submit" name="guardarCR" value="guardarCR " class="btnRegform">Guardar</button>
<input type="reset" name="reset" onClick="window.location.replace('principal.php')" value="Cancelar" class="btnCancel">
</div>
</form>
<section> <?php require('footer.php'); ?> </section>
</body>
</html>