domain-watchdog/assets/utils/providers/forms/NamecheapConnectorForm.tsx

34 lines
1.0 KiB
TypeScript
Raw Normal View History

2025-02-18 15:41:59 +01:00
import type {FormInstance} from 'antd'
2025-02-19 00:54:04 +01:00
import {Form, Input, Typography} from 'antd'
2025-02-18 15:41:59 +01:00
import React from 'react'
2025-02-18 17:20:33 +01:00
import {ConnectorProvider} from '../../api/connectors'
2025-02-18 15:41:59 +01:00
import {t} from 'ttag'
2025-02-19 22:21:20 +01:00
export default function NamecheapConnectorForm({form}: {
form: FormInstance
2025-02-18 15:41:59 +01:00
}) {
2025-02-18 17:32:34 +01:00
form.setFieldValue('provider', ConnectorProvider.Namecheap)
2025-02-18 15:41:59 +01:00
return (
2025-02-19 22:21:20 +01:00
<>
2025-02-18 15:41:59 +01:00
<Form.Item
label={t`Username`}
name={['authData', 'ApiUser']}
2025-02-19 00:54:04 +01:00
help={<Typography.Link target='_blank' href='https://ap.www.namecheap.com/settings/tools/apiaccess/'>
{t`Retreive an API key and whitelist this instance's IP address on Namecheap's website`}
</Typography.Link>}
2025-02-18 15:41:59 +01:00
>
<Input autoComplete='off'/>
</Form.Item>
<Form.Item
label={t`API key`}
name={['authData', 'ApiKey']}
>
<Input autoComplete='off'/>
</Form.Item>
2025-02-19 22:21:20 +01:00
</>
2025-02-18 15:41:59 +01:00
)
}