This commit is contained in:
2024-12-24 17:29:37 +01:00
parent e0aa499940
commit 4c08435bd8
115 changed files with 3613 additions and 152 deletions

View File

@ -11,8 +11,14 @@ body {
.avatar{
border-radius: 100%;
width:40px;
height:40px;
width:35px;
height:35px;
}
.bigavatar{
border-radius: 100%;
width:100px;
height:100px;
}
.navbar-brand img {

View File

@ -2,3 +2,22 @@ function ModalLoad(idmodal,title,path) {
$("#"+idmodal+" .modal-header h4").text(title);
$("#"+idmodal+" #framemodal").attr("src",path);
}
$(document).ready(function(){
$("#selectcompany").on("change", function() {
url=$(this).data("change");
$.ajax({
type: "POST",
url: url,
data: {
id: $(this).val()
},
success: function (result) {
location.reload();
}
});
});
});