mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
35 lines
948 B
Python
35 lines
948 B
Python
from django import forms
|
|
from django.contrib.auth.forms import AuthenticationForm, PasswordChangeForm as DjangoPasswordChangeForm
|
|
|
|
from utilities.forms import BootstrapMixin
|
|
from .models import Token
|
|
|
|
|
|
class LoginForm(BootstrapMixin, AuthenticationForm):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.fields['username'].widget.attrs['placeholder'] = ''
|
|
self.fields['password'].widget.attrs['placeholder'] = ''
|
|
|
|
|
|
class PasswordChangeForm(BootstrapMixin, DjangoPasswordChangeForm):
|
|
pass
|
|
|
|
|
|
class TokenForm(BootstrapMixin, forms.ModelForm):
|
|
key = forms.CharField(
|
|
required=False,
|
|
help_text="If no key is provided, one will be generated automatically."
|
|
)
|
|
|
|
class Meta:
|
|
model = Token
|
|
fields = [
|
|
'key', 'write_enabled', 'expires', 'description',
|
|
]
|
|
help_texts = {
|
|
'expires': 'YYYY-MM-DD [HH:MM:SS]'
|
|
}
|