Added default email(admin) in forms.

This commit is contained in:
Oscar Rezo 2016-11-07 09:38:49 +01:00
parent f190009850
commit 155a6e5ebb
5 changed files with 10 additions and 7 deletions

View File

@ -105,7 +105,7 @@ let ConsignForm = React.createClass({
type="email"
value={email}
placeholder={getLangText('Email of the consignee')}
value="admin@bokk.io"
value={getLangText('Admin email')}
required/>
</Property>
<Property

View File

@ -162,7 +162,7 @@ let LoanForm = React.createClass({
value={email}
type="email"
placeholder={getLangText('Email of the loanee')}
value="admin@bokk.io"
value={getLangText('Admin email')}
required/>
</Property>
<Property

View File

@ -60,7 +60,7 @@ let ShareForm = React.createClass({
<input
type="text"
placeholder={getLangText('Comma separated emails')}
value="admin@bokk.io"
value={getLangText('Admin email')}
required/>
</Property>
<Property

View File

@ -61,7 +61,7 @@ let TransferForm = React.createClass({
<input
type="email"
placeholder={getLangText('Email of the transferee')}
value="admin@bokk.io"
value={getLangText('Admin email')}
required/>
</Property>
<Property

View File

@ -228,7 +228,8 @@ const languages = {
'Submitted to prize': 'Submitted to prize',
'Welcome to ascribe': 'Welcome to ascribe',
'CREATE EDITIONS': 'CREATE EDITIONS',
'Remove Piece': 'Remove Piece'
'Remove Piece': 'Remove Piece',
'Admin email': 'admin@bokk.io'
},
'de': {
'ID': 'ID',
@ -457,7 +458,8 @@ const languages = {
'Submitted to prize': 'Submitted to prize',
'Welcome to ascribe': 'Welcome to ascribe',
'CREATE EDITIONS': 'CREATE EDITIONS',
'Remove Piece': 'Remove Piece'
'Remove Piece': 'Remove Piece',
'Admin email': 'admin@bokk.io'
},
'fr': {
'ID': 'ID',
@ -686,7 +688,8 @@ const languages = {
'Submitted to prize': 'Submitted to prize',
'Welcome to ascribe': 'Welcome to ascribe',
'CREATE EDITIONS': 'CREATE EDITIONS',
'Remove Piece': 'Remove Piece'
'Remove Piece': 'Remove Piece',
'Admin email': 'admin@bokk.io'
}
};