import {Alert, Checkbox, Form, Input, Typography} from 'antd' import React from 'react' import {t} from 'ttag' 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`}]} > {t`Attention: AutoDNS do not support 2-Factor Authentication on API Users for automated systems`} } rules={[{required: true, message: t`Required`}]} required > {t`The nic-handle of the domain name owner`} {t`You can get it from this page`} } rules={[{required: true, message: t`Required`}]} required > {t`If you not sure, use the default value 4`} } required={false} > {t`Owner confirms his consent of domain order jobs`} ) }