import {Alert, Checkbox, Form, Input, Typography} from 'antd'
import React from 'react'
import {t} from 'ttag'
import {LockOutlined, UserOutlined, CrownOutlined, FieldNumberOutlined} from "@ant-design/icons"
export default function AutoDnsConnectorForm() {
return (
<>
{t`Because of some limitations in API of AutoDNS, we suggest to create an dedicated user for API with limited rights`}
}
rules={[{required: true, message: t`Required`}]}
>
} autoComplete='off' required/>
{t`Attention: AutoDNS do not support 2-Factor Authentication on API Users for automated systems`}
}
rules={[{required: true, message: t`Required`}]}
required
>
} autoComplete='off' required placeholder=''/>
{t`The nic-handle of the domain name owner`} {t`You can get it from this page`}
}
rules={[{required: true, message: t`Required`}]}
required
>
} autoComplete='off' required/>
{t`If you not sure, use the default value 4`}
}
required={false}
initialValue={4}
>
} autoComplete='off' required={false}/>
{t`Owner confirms his consent of domain order jobs`}
>
)
}