Skip to content

Instantly share code, notes, and snippets.

@littlebtc
Created May 8, 2009 14:41
Show Gist options
  • Save littlebtc/108802 to your computer and use it in GitHub Desktop.
Save littlebtc/108802 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="yourwindow" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<groupbox>
<caption label="Login"/>
<grid>
<columns>
<column flex="1"/>
<column flex="2"/>
</columns>
<rows>
<row>
<label value="ID"/>
<textbox id="id"/>
</row>
<row>
<label value="Password"/>
<textbox id="password" type="password" />
</row>
</rows>
</grid>
<button label="Login" />
</groupbox>
</window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment