<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Python imports

# Django imports
from django import forms



class DeviceAddForm(forms.Form):

    device_id = forms.CharField(max_length=40,required=True)
    device_type = forms.CharField(max_length=10,required=True)
    device_identifier = forms.CharField(max_length=20,required=True)
    password = forms.CharField(widget=forms.PasswordInput)</pre></body></html>