[New] Add app title as input

This commit is contained in:
Robert von Burg 2017-01-12 16:33:15 +01:00
parent 97b144ffd9
commit 265e1fe676
2 changed files with 6 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# Created by .ignore support plugin (hsz.mobi)
.idea/

View File

@ -54,7 +54,7 @@
<iron-a11y-keys id="a11y" keys="enter" on-keys-pressed="_submitForm"></iron-a11y-keys>
<paper-card heading="Login">
<div class="card-content">
<p>Please login to Consilium</p>
<p>Please login to [[appName]]</p>
<paper-input id="username"
bind-value="{{username}}"
label="Username"
@ -178,6 +178,9 @@
app: {
type: Object
},
appName: {
type: String
},
username: {
type: String
},