aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/resources/resource_create.html
blob: d428e46716f0d1a5546b952249274c1c956e6a7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base.html" %}

{% load static %}
{% load crispy_forms_tags %}

{#    {% block extra_css %}#}
{#    <link rel="stylesheet" href="{% static 'css/forms.css' %}">#}
{#    {% endblock %}#}
{% block content %}
  <div class="row d-flex justify-content-center">
    <div class="col bg-light mt-lg-4 p-4 border border-success border-opacity-25 rounded">
      <h2>Upload a new resource</h2>
      <p>{% lorem %}</p>
      <form action="{% url 'resources:create_resource' %}"
            method="post"
            enctype="multipart/form-data">
        {% csrf_token %}
        {% crispy form form.helper %}
      </form>
    </div>
  </div>
{% endblock content %}