This commit is contained in:
KANE LAZENI 2025-12-24 07:13:43 +00:00
parent fa0c8fd9e4
commit 4e88919cce
12 changed files with 316 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

View File

@ -99,6 +99,16 @@
<link href="Bootstrap_new/css/style_new.css?ver=2025.11.24.01" rel="stylesheet">
<!-- END: webview fixes -->
<!-- APLLI MOBILE -->
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#1f2a44">
<!-- iOS (installation sur écran daccueil) -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="RadiantAssure">
<link rel="apple-touch-icon" href="/assets/icons/icon-192.png">
</head>
<body >

BIN
assets/icons/icon-192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
assets/icons/icon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

BIN
assets/icons/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

35
manifest.json Normal file
View File

@ -0,0 +1,35 @@
{
"name": "RadiantAssure",
"short_name": "RadiantAssure",
"description": "Application web RadiantAssure",
"start_url": "/?source=pwa",
"scope": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#ffffff",
"theme_color": "#1f2a44",
"icons": [
{
"src": "/assets/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/assets/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/assets/icons/icon-192-maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/assets/icons/icon-512-maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}