Design user registration form to input following details. First name, last name, gender, birth date, country, state, city, capture photograph of the individual, record audio of the individual.Capture and display the data when submit button is clicked.
@app.route('/user_registration_form', methods=['POST', 'GET']) def user_registration_form() if request.method == 'POST': data = request.form.to_dict() data['photo'] = request.files['photo'].read() data['audio'] = request.files['audio'].read() return data return render_template('user_registration_form.html')