<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" horizontalAlign="center" creationComplete="init();" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#000000, #2A2A2A]" viewSourceURL="srcview/index.html">
    
    <mx:Style source="Style.css" />
    <mx:Script source="Script.as" />
    
    <mx:Text styleName="header" selectable="false" text="Domain check" />
    
    <mx:VBox styleName="mainContainer" width="100%">
        <mx:HBox>
            <mx:TextInput styleName="domainInput" id="domainInput" width="400"/>
            <mx:Button styleName="checkButton" id="checkButton" label="Check availability" click="checkDomain();" />
        </mx:HBox>
        
        <mx:HBox>
            <mx:Text selectable="false" condenseWhite="true" color="#666666" width="570">
                <mx:htmlText>
                    <![CDATA[
                        <b>Supported top-level domains:</b> com, net, org, info, biz, us, co.uk<br>
                    ]]>
                </mx:htmlText>
            </mx:Text>
        </mx:HBox>
    </mx:VBox>
    
    <mx:HBox paddingTop="20">
        <mx:Image id="resultImage" source="{resultIcon}" />
        <mx:Label selectable="false" fontSize="12" id="resultOutput" color="{textColor}" />
    </mx:HBox>
        
</mx:Application>