BoxTitoli_Mysql/templates/crea_titolo.html

16 lines
366 B
HTML
Raw Permalink Normal View History

2020-05-22 12:05:33 +00:00
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block title %} LORDCHANNEL - CREA TITOLO {% endblock title %}
{% block content %}
<h1 class="text-center">Crea Titolo : </h1>
<div class="container">
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" class="btn btn-danger" value="CREA">
</form>
</div>
{% endblock content %}