-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo_solicitud.php
53 lines (51 loc) · 955 Bytes
/
info_solicitud.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
<?php include('include/header.php'); ?>
<article id="info_solicitud">
<h1>Solicitud:</h1>
<div id="accion_solicitud">
<a href=""><button class="blue_button">Descargar mano</button></a>
<a href=""><button class="blue_button">Cambiar estado</button></a>
</div>
<table class="tabla_datos">
<tr>
<td>Estado:</td>
<td><b>Pendiente</b></td>
</tr>
<tr>
<td>Nombre:</td>
<td>Ipsum</td>
</tr>
<tr>
<td>Apellido:</td>
<td>Lorem</td>
</tr>
<tr>
<td>Nacimiento:</td>
<td>3/9/1996</td>
</tr>
<tr>
<td>País:</td>
<td>Argentina</td>
</tr>
<tr>
<td>Provincia:</td>
<td>Buenos Aires</td>
</tr>
<tr>
<td>Dirección:</td>
<td>Calle falsa 123</td>
</tr>
<tr>
<td>Código postal:</td>
<td>1407</td>
</tr>
<tr>
<td>Teléfono:</td>
<td>49836598</td>
</tr>
<tr>
<td>Email:</td>
<td>[email protected]</td>
</tr>
</table>
</article>
<?php include('include/footer.php'); ?>