Files
kabano/views/d.wiki.edit.html
copilot-swe-agent[bot] 9728aefc07 Replace PHP short tags
Co-authored-by: LeOSW42 <673670+LeOSW42@users.noreply.github.com>
2026-01-24 12:42:17 +00:00

30 lines
897 B
HTML
Executable File

<!DOCTYPE html>
<html lang="fr">
<?php include('blocks/d.head.html'); ?>
<body>
<?php include('blocks/d.nav.html'); ?>
<section>
<form class="form" action="<?=$config['rel_root_folder']?>wiki/<?=$wikiPage->permalink?>/edit" method="post">
<h1>
<select name="locale" id="locale">
<?php foreach($locales->objs as $locale) { ?>
<option <?=$wikiPage->locale==$locale->name?'selected':''?> value="<?=$locale->name?>"><?=$locale->display_name?></option>
<?php } ?>
</select>
<input type="text" value="<?=$wikiPage->name?>" name="name" id="name" placeholder="Titre">
</h1>
<textarea rows="30" name="content" id="content" placeholder="Contenu de la page"><?=$wikiPage->content?></textarea>
<input name="submit" id="submit" type="submit" value="Envoyer">
</form>
</section>
<?php include('blocks/d.footer.html'); ?>
</body>
</html>