26 lines
893 B
HTML
26 lines
893 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Administration - MMS43</title>
|
|
<script src="https://unpkg.com/@sveltia/cms/dist/sveltia-cms.js" type="module"></script>
|
|
<link href="config.yml" type="text/yaml" rel="cms-config-url" />
|
|
<script>
|
|
// Modifier le texte des boutons de connexion
|
|
const observer = new MutationObserver(() => {
|
|
const buttons = document.querySelectorAll('button');
|
|
buttons.forEach(btn => {
|
|
if (btn.textContent.includes('Gitea / Forgejo')) {
|
|
btn.textContent = btn.textContent.replace('Gitea / Forgejo', 'COOPGO');
|
|
}
|
|
});
|
|
});
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
observer.observe(document.body, { childList: true, subtree: true });
|
|
});
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|