Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 29, 2019 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/8b63d72a7b2fcfe7d2f35c32844ddf20 to your computer and use it in GitHub Desktop.
Save parzibyte/8b63d72a7b2fcfe7d2f35c32844ddf20 to your computer and use it in GitHub Desktop.
{% 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