'how to using cookies to get data from local storage - DJANGO

i was new in django. i want to get my data back from local storage, but i don't know how to get it. can someone explain me? my application using form NOT MODELS.

the application made using django, i use FileField to get files and pass it to local storage. i was hear to get data, i can use cookies, since client data at local storage can't be get.

from django import forms

class Audio_store(forms.Form):
    password=forms.FileField(widget=forms.FileInput(attrs={'style': 'width: 300px;', 'class': 'form-control', 
    'text-align' : 'center;'}))
    audio=forms.FileField(widget=forms.FileInput(attrs={'style': 'width: 300px;', 'class': 'form-control', 
    'text-align' : 'center;'}))


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source