mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-20 03:56:35 +00:00
16 lines
277 B
Python
16 lines
277 B
Python
|
|
from django import forms
|
|
|
|
|
|
class ValidateSourceForm(forms.Form):
|
|
|
|
source_type = forms.CharField(
|
|
max_length=1,
|
|
required=True,
|
|
widget=forms.HiddenInput()
|
|
)
|
|
source_url = forms.URLField(
|
|
label='Source URL',
|
|
required=True
|
|
)
|