You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
505 B
16 lines
505 B
{% extends 'user/user_base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block personal %}
|
|
<div class="row">
|
|
<div class="col-8 offset-2">
|
|
<form action="{% url 'user:user_profile_create' %}" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<input type="submit" class="btn btn-primary">
|
|
<input type="reset" class="btn btn-danger">
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |