Commit cec79492 authored by Ramon Angelo Enriquez's avatar Ramon Angelo Enriquez

Added some final CSS styling for the new WidgetUser form in the Homepage App

parents 1f0595db 0632ec69
......@@ -7,4 +7,4 @@ class UserForm(ModelForm):
class Meta:
model = WidgetUser
fields = ["last_name", "first_name", "middle_name", "id_num", "email",
"picture", "department"]
"department", "picture"]
{% extends "homepage/base.html" %}
{% block content %}
<div class="homepageRectangleHeader"></div>
<h1 style="text-align: center">Add Widget User</h1>
<form class="" action="{% url 'homepage:adduser' %}" method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ user_form.as_p }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment