This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Initial data; they need to be filled by the user | |
## API token | |
api_token=<api-token> | |
email=<your-clodflare-email> | |
zone_name=<root-domain-name> | |
dns_record=<submdomain> # requires the full sub+domain ex. subdomain.root.com | |
# Function to log messages with timestamp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { | |
Box, | |
BoxProps, | |
Collapse, | |
FormControl, | |
FormControlLabel, | |
Radio, | |
RadioGroup, | |
RadioGroupProps, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { | |
Card, | |
CardProps, | |
FormControl, | |
FormControlLabel, | |
Radio, | |
RadioGroup, | |
RadioGroupProps, | |
Stack, |