mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
6 lines
184 B
Python
6 lines
184 B
Python
from django import forms
|
|
|
|
class UpdateKeyForm(forms.Form):
|
|
api_id = forms.CharField(max_length=254, required = True)
|
|
api_key = forms.CharField(max_length=254, required = True)
|