File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ body ::after {
2
+ content : "" ;
3
+ background : url (/Users/gerardpuig/eclipse-workspace/ITAcademy_Exercicis/M13-HTTP-Service/src/main/resources/static/background.jpeg);
4
+ opacity : 0.5 ;
5
+ top : 0 ;
6
+ left : 0 ;
7
+ bottom : 0 ;
8
+ right : 0 ;
9
+ position : absolute;
10
+ z-index : -1 ;
11
+ }
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
- < html >
2
+ < html lang =" es " xmlns:th =" http://www.thymeleaf.org " >
3
3
4
4
< head >
5
5
< meta charset ="UTF-8 ">
8
8
<!--Libreria Jquery carcada des de CDN-->
9
9
< script src ="https://code.jquery.com/jquery-3.6.0.min.js "> </ script >
10
10
11
+ <!-- Data table -->
12
+ < script src ="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js "> </ script >
13
+ < script src ="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js "> </ script >
14
+ < link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.css ">
15
+ < link rel ="stylesheet " href ="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css ">
16
+ < script type ="text/javascript ">
17
+ $ ( document ) . ready ( function ( ) {
18
+ //Asegurate que el id que le diste a la tabla sea igual al texto despues del simbolo #
19
+ $ ( '#employeeTable' ) . DataTable ( ) ;
20
+ } ) ;
21
+ </ script >
11
22
</ head >
12
23
13
24
< body >
You can’t perform that action at this time.
0 commit comments