-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreporte.html
57 lines (56 loc) · 1.63 KB
/
reporte.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
<html>
<head>
<title>Reporte Final</title>
</head>
<body style="background-color:#0e6da8 ; font-family: Helvetica, Sans-Serif">
<h1 style="text-align:center">Reporte del usuario</h1>
<form name="form-1">
<table width = 55% border="1" align="center" style="background-color:white; text-align:center">
<tr>
<td colspan="2">
<div align="center"><strong>Datos del cliente</strong></div>
</td>
</tr>
<tr>
<td>Nombre del cliente</td>
<td>$nombredelcliente</td>
</tr>
<tr>
<td>Numero</td>
<td>$numero</td>
</tr>
<tr>
<td>DNI</td>
<td>$dni</td>
</tr>
<tr>
<td>Direccion</td>
<td>$direccion</td>
</tr>
<td colspan="2">
<div align="center"><strong>Datos de transaccion</strong></div>
</td>
<tr>
<td>Fecha de transaccion</td>
<td>$fechadetransaccion</td>
</tr>
<tr>
<td>Tipo de operacion</td>
<td>$tipodeoperacion</td>
</tr>
<tr>
<td>Estado</td>
<td>$estado</td>
</tr>
<tr>
<td>Monto</td>
<td>$monto</td>
</tr>
<tr>
<td>Razon de rechazo</td>
<td>$razon de rechazo</td>
</tr>
</table>
</form>
</body>
</html>