INISEG CAST

Roger Cirillo, The Military Future


Who is?

About our protagonist

Roger Cirillo served in the US Army from 1971 to 1995, retiring with the rank of Lieutenant Colonel. He served in armored cavalry units in the United States, Korea, and West Germany, on the staff and faculty of the Air Defense and Armor Schools. He was a War Plans Officer in NATO Army Central Group and served in the CINC office, USAREUR. He taught military history at the US Army Command and Staff College and has a Ph.D. in military history from Cranfield University at the Royal Military College of Science, Shrivenham, UK. He is the author of the Ardennes-Alsace Campaign and other publications and assisted in the publication of more than 30 military history books for the Association of the United States Army. He is the editor of the «American Warrior» series and the «Battles and Campaigns» series for the University Press of Kentucky.

$(document).ready(function() { $('#formulario-inscripcion').submit(function(e) { e.preventDefault(); // Evita el envío del formulario de la manera tradicional $.ajax({ type: $(this).attr('method'), // GET o POST url: $(this).attr('action'), // La URL a la que se envía el formulario data: $(this).serialize(), // Serializa los datos del formulario para el envío success: function(response) { // Aquí puedes manejar la respuesta del servidor alert('Inscripción satisfactoria'); // Muestra una alerta al usuario // También puedes limpiar el formulario si lo deseas $('#formulario-inscripcion').trigger('reset'); // Limpia el formulario }, error: function() { // Manejo del error alert('Hubo un error al enviar el formulario. Por favor, inténtalo de nuevo.'); } }); }); });