Skip to content

Instantly share code, notes, and snippets.

@whoozle
Created April 23, 2019 11:35
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save whoozle/d0bc9bf3864d5c68193f64368c276642 to your computer and use it in GitHub Desktop.
Item {
width: 30%;
height: 100%;
anchors.horizontalCenter: parent.horizontalCenter;
Rectangle {
anchors.fill: parent;
color: "#888";
}
Column {
width: parent.width;
anchors.centerIn: parent;
spacing: 8;
TextInput {
id: serverUrl;
PlaceHolder { text: "ServerUrl"; }
anchors.horizontalCenter: parent.horizontalCenter;
}
TextInput {
id: user;
PlaceHolder { text: "User"; }
anchors.horizontalCenter: parent.horizontalCenter;
}
TextInput {
id: password;
passwordMode: true;
PlaceHolder { text: "Password"; }
anchors.horizontalCenter: parent.horizontalCenter;
}
Button {
text: "Sign Up";
anchors.horizontalCenter: parent.horizontalCenter;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment