{% extends 'base.html' %} {% load widget_tweaks %} {% block title %}Form Registrasi{% endblock %} {% block content %} {% include 'navbar.html' %}

Weekly Individual Assignment 07

Vinka Alrezky As - 2206820200

Form Registrasi

{% csrf_token %} {% for field in form %}
{% if field.name == 'birth_date' %}
{{ field.as_widget }}
{% else %} {{ field.as_widget }} {% endif %} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %}
{% for error in field.errors %} {{ error }} {% endfor %}
{% endif %}
{% endfor %}

Already have an account? Sign in here

{% block extra_js %} {% endblock %} {% endblock %}