-
Notifications
You must be signed in to change notification settings - Fork 0
/
hermanos.html
104 lines (91 loc) · 4.53 KB
/
hermanos.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>Ebenezer Ruta de buses</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<!-- Navbar goes here -->
<!-- Page Layout here -->
<div class="row">
<div class="col s2 blue-grey darken-3">
<!-- Grey navigation panel -->
<section class="blue-grey darken-3">
<div class="center"><a href="dashboard.html"><img src="images/logo.png" width="100"></a></div>
<div class="center"><h5 style="color:white;">Brandon Napky</h5></div>
</section>
<section>
<p><a href="hermanos.html" class="waves-effect waves-light btn blue-grey darken-1"><i class="material-icons left">assignment_ind</i>Hermanos </a></p>
<p><a href="tarjetas.html" class="waves-effect waves-light btn blue-grey darken-1"><i class="material-icons left">payment</i>Tarjetas </a></p>
<p><a href="rutas.html" class="waves-effect waves-light btn blue-grey darken-1"><i class="material-icons left">directions_bus</i>Rutas </a></p>
<p><a href="reportes.html" class="waves-effect waves-light btn blue-grey darken-1"><i class="material-icons left">assignment</i>Reportes </a></p>
<p><a href="contrasena.html" class="waves-effect waves-light btn blue-grey darken-1"><i class="material-icons left">close</i>Contraseña</a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</section>
</div>
<div class="col s9">
<p> </p>
<p> </p>
<p></p>
<h3 class="Grey thin">Hermanos</h3>
<div class="right"><a href="nuevohermano.html" class="btn-floating btn-small waves-effect waves-light modal-trigger blue-grey" href="#modal1"><i class="material-icons">add</i></a></div>
<p></p>
<table class="striped">
<thead>
<tr>
<th data-field="id_pokemon"><h6>Nombre</h6></th>
<th data-field="nombre"><h6>Telefono</h6></th>
<th data-field="tipo"><h6>Saldo</h6></th>
<th data-field="actualizar"><h6>Actualizar</h6></th>
<th data-field="borrar"><h6>Delete</h6></th>
</tr>
</thead>
<tbody>
<tr>
<td>Brandon Napky</td>
<td>90000000</td>
<td>25</td>
<td><a class="btn-floating btn-small waves-effect waves-light modal-trigger blue" href="#modal1"><i class="material-icons">mode_edit</i></a></td>
<td><a class="btn-floating btn-small waves-effect waves-light red"><i class="material-icons">delete</i></a></td>
</tr>
<tr>
<td>David Chavarria</td>
<td>90000000</td>
<td>50</td>
<td><a class="btn-floating btn-small waves-effect waves-light modal-trigger blue" href="#modal1"><i class="material-icons">mode_edit</i></a></td>
<td><a class="btn-floating btn-small waves-effect waves-light red"><i class="material-icons">delete</i></a></td>
</tr>
<tr>
<td>Josue Enamorado</td>
<td>90000000</td>
<td>100</td>
<td><a class="btn-floating btn-small waves-effect waves-light modal-trigger blue" href="#modal1"><i class="material-icons">mode_edit</i></a></td>
<td><a class="btn-floating btn-small waves-effect waves-light red"><i class="material-icons">delete</i></a></td>
</tr>
</tbody>
</table>
<ul class="pagination center-align">
<li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>
<li class="active blue-grey darken-4"><a href="#!">1</a></li>
<li class="waves-effect"><a href="#!">2</a></li>
<li class="waves-effect"><a href="#!">3</a></li>
<li class="waves-effect"><a href="#!">4</a></li>
<li class="waves-effect"><a href="#!">5</a></li>
<li class="waves-effect"><a href="#!"><i class="material-icons">chevron_right</i></a></li>
</ul>
</div>
</div>
</body>
</html>