Files
RenewCMS/adapters/secondary/gateways/web/templates/postEdit.html
T
Florian Sylvain 55d9e3bfc1 clean: english
The changes in this commit were made to translate the website's text content from French to English, as part of efforts to ensure the platform is more accessible to a wider audience. This includes translation of user-facing instructions, button labels, form fields, and messages across multiple templates including home.html, setup1.html, setup2.html, and login.html among others.
2023-10-16 09:47:04 +02:00

26 lines
540 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>GohCMS | Post edition</title>
{{.Head}}
</head>
<body class="text-dark">
{{.Navbar}}
<div class="container mt-3 text-black-50">
<h1>Post - edition</h1>
<form action="posts" method="POST">
<label for="postContent">Edition</label>
<textarea id="postContent" name="postContent"></textarea>
</form>
</div>
<script src="/static/tinymce/js/tinymce/tinymce.min.js"></script>
<script>
tinymce.init({
selector: '#postContent',
promotion: false
});
</script>
</body>
</html>