-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
executable file
·64 lines (63 loc) · 2.07 KB
/
about.php
File metadata and controls
executable file
·64 lines (63 loc) · 2.07 KB
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
<?php
include 'config.php';
Session::start();
$titulo="Acerca de";
?>
<?php ob_start() ?>
<h1>Administración de Recursos</h1>
<h4> Trabajo Práctico Final </h4>
<p><i> Integrantes del grupo: </i></p>
<table class='table table-hover table-striped'>
<thead>
<tr>
<th></th>
<th>Alumno</th>
<th>Legajo</th>
<th>Comisión</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="col-sm-6 col-md-3">
<a href="./img/rmartinez.jpg" class="thumbnail">
<img src="./img/rmartinez.jpg" alt="imagen_usuario">
</a>
</div>
</td>
<td>Raúl A. Martinez</td>
<td>34163</td>
<td>4k3</td>
<td>raul.martinez230@gmail.com</td>
</tr>
<tr>
<td>
<div class="col-sm-6 col-md-3">
<a href="./img/erojas.jpg" class="thumbnail">
<img src="./img/erojas.jpg" alt="imagen_usuario">
</a>
</div>
</td>
<td>Esteban J. Rojas</td>
<td>33182</td>
<td>4k3</td>
<td>javier_rojas50@hotmail.com</td>
</tr>
<tr>
<td>
<div class="col-sm-6 col-md-3">
<a href="./img/fzafe.jpg" class="thumbnail">
<img src="./img/fzafe.jpg" alt="imagen_usuario">
</a>
</div>
</td>
<td>Omar Fernando Zafe</td>
<td>38125</td>
<td>4k3</td>
<td>fernandozafe@gmail.com</td>
</tr>
</tbody>
</table>
<?php $contenido = ob_get_clean() ?>
<?php include 'plantillas/base.php' ?>