Practicing A
Require:
In this website contains a form, please implement it with django form system.
Present it in you application with testing_form.html and it url is:
opensource_XX/test_form
Pages should have ability to process form data when sent out.
Response should be a Json object contains the every id in form as its key, value is field value, and directly return to orignal page.
Practicing B
Require:
Make a new page extends your base.html, contains a form for register.
Form content should contains following field.
(1) Name (<input> length = 20)
(2) Sex (<select> 0 : Female 1: Male)
(3) StudentID (<input> length = 9)
(4) Department (<input> length = 30)
(5) Passwd (<input> length = 50)
(6) E-mail (<input> length = 50)
This page will load in when use access website through url:
opensource_XX/register
After send out, form result will print in same page with label to present every detail.