Advertisement
Guest User

create new user

a guest
Dec 9th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. {% extends 'clothing/base.html' %}
  2. {% load static %}
  3. {% load bootstrap4 %}
  4. {% block title %} User Creation Form - {% endblock title %}
  5. {% block content %}
  6.  
  7. <form enctype="multipart/form-data" action="{% url 'clothing:create_new_user' %}" method="POST" id="create_cloth_form">
  8.  
  9.     <h2>Create new user</h2>
  10.     {% if form.errors %}
  11.         {% for error in form.errors %}
  12.             <p class="text-danger">{{ error }}</p>
  13.         {% endfor %}
  14.     {% endif %}
  15.     <form id="cloth_creation_form" enctype="multipart/form-data" action="{% url 'clothing:create_cloth' %}" method="POST">
  16.         {% csrf_token %}
  17.         {% bootstrap_form form fied_class='form-group' layout="horizontal"  %}
  18.         {% buttons submit="Sign Up" %}{% endbuttons %}
  19.     </form>
  20.  
  21. {% endblock content %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement