Skip to content

Instantly share code, notes, and snippets.

@pawel-dubiel
Created July 16, 2014 21:57
Show Gist options
  • Save pawel-dubiel/db892a390ec7c399c433 to your computer and use it in GitHub Desktop.
Save pawel-dubiel/db892a390ec7c399c433 to your computer and use it in GitHub Desktop.
designer
<link href="../paper-input/paper-input.html" rel="import">
<link href="../paper-checkbox/paper-checkbox.html" rel="import">
<link href="../paper-button/paper-button.html" rel="import">
<polymer-element name="orangecluster-loginForm">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_input {
left: 710px;
top: 350px;
position: absolute;
}
#paper_input1 {
left: 710px;
top: 430px;
position: absolute;
}
#paper_checkbox {
left: 710px;
top: 520px;
position: absolute;
}
#paper_button {
left: 940px;
top: 550px;
position: absolute;
}
</style>
<paper-input label="Username..." floatinglabel id="paper_input"></paper-input>
<paper-input label="Password..." floatinglabel type="password" id="paper_input1"></paper-input>
<paper-checkbox checked label="remember me" id="paper_checkbox"></paper-checkbox>
<paper-button label="Login" id="paper_button"></paper-button>
</template>
<script>
Polymer('orangecluster-loginForm', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment