| 17 | |
| 18 | |
| 19 | class PackageSearchForm(forms.Form): |
| 20 | |
| 21 | search = forms.CharField( |
| 22 | required=True, |
| 23 | widget=forms.TextInput( |
| 24 | attrs={"placeholder": "Package name, purl or purl fragment"}, |
| 25 | ), |
| 26 | ) |
| 27 | |
| 28 | |
| 29 | class VulnerabilitySearchForm(forms.Form): |
no outgoing calls
no test coverage detected