-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publicar en WordPress</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<div class="container my-5">
<h1 class="text-center">Crear Publicación en WordPress</h1>
<div class="row justify-content-center mt-5">
<div class="col-md-6">
<form id="postForm">
<div class="form-group">
<label for="title">Título</label>
<input type="text" id="title" class="form-control" placeholder="Introduce el título" required>
</div>
<div class="form-group">
<label for="content">Contenido</label>
<textarea id="content" class="form-control" rows="5" placeholder="Introduce el contenido" required></textarea>
</div>
<button type="submit" class="btn btn-primary btn-block">Publicar</button>
<button type="button" id="clearFields" class="btn btn-secondary btn-block mt-2">Limpiar Campos</button>
</form>
</div>
</div>
</div>
<script>
// Al cargar la página, limpiar los campos de texto
window.addEventListener('load', function () {
document.getElementById('title').value = '';
document.getElementById('content').value = '';
});
// Evento para limpiar los campos con el botón "Limpiar Campos"
document.getElementById('clearFields').addEventListener('click', function () {
document.getElementById('title').value = '';
document.getElementById('content').value = '';
});
// Manejo del envío del formulario
document.getElementById('postForm').addEventListener('submit', function (e) {
e.preventDefault();
const title = document.getElementById('title').value;
const content = document.getElementById('content').value;
fetch('http://www.wpapi1.lan/publish.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ title, content })
})
.then(response => response.json())
.then(data => {
if (data.success) {
alert('Publicación creada con éxito.');
// Limpiar los campos después de la publicación exitosa
document.getElementById('title').value = '';
document.getElementById('content').value = '';
} else {
alert('Error al crear la publicación: ' + data.error);
}
})
.catch(error => console.error('Error en la solicitud:', error));
});
</script>
</body>
</html>