This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "master.twig" %} | |
{% block titulo %}Eliminar nota | |
{% endblock %} | |
{% block contenido %} | |
<main class="container-fluid"> | |
<div class="row"> | |
<div class="col-12"></div> | |
<div class="col-12 col-sm-6"> | |
<h1 class="text-center">Confirmar</h1> | |
<p> | |
¿Eliminar nota con el siguiente contenido? | |
<pre>{{nota.contenido}}</pre> | |
</p> | |
<form action="{{URL_RAIZ}}/notas/eliminar" method="post"> | |
<input type="hidden" name="idNota" value="{{nota.id}}"> | |
<button class="btn btn-danger" type="submit">Eliminar</button> | |
<a class="btn btn-info" href="{{URL_RAIZ}}/notas">Ver notas</a> | |
</form> | |
</div> | |
</div> | |
</main> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment