16 lines
366 B
HTML
16 lines
366 B
HTML
|
{% 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 %}
|