Formulir Pengguna

{% csrf_token %}

{{ form.nama }} {% if form.nama.errors %} {{ form.nama.errors.as_text }} {% endif %}

{{ form.nik }} {% if form.nik.errors %} {{ form.nik.errors.as_text }} {% endif %}

{{ form.jumlah_poin }} {% if form.jumlah_poin.errors %} {{ form.jumlah_poin.errors.as_text }} {% endif %}

{{ form.password }} {% if form.password.errors %} {{ form.password.errors.as_text }} {% endif %}

{{ form.tanggal_lahir }} {% if form.tanggal_lahir.errors %} {{ form.tanggal_lahir.errors.as_text }} {% endif %}

{{ form.nomor_hp }} {% if form.nomor_hp.errors %} {{ form.nomor_hp.errors.as_text }} {% endif %}

{{ form.email }} {% if form.email.errors %} {{ form.email.errors.as_text }} {% endif %}

{{ form.url_blog }} {% if form.url_blog.errors %} {{ form.url_blog.errors.as_text }} {% endif %}

{{ form.deskripsi_diri }} {% if form.deskripsi_diri.errors %} {{ form.deskripsi_diri.errors.as_text }} {% endif %}