1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-03 18:35:09 +01:00

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" type="email"
value={email} value={email}
placeholder={getLangText('Email of the consignee')} placeholder={getLangText('Email of the consignee')}
value="admin@bokk.io" value={getLangText('Admin email')}
required/> required/>
</Property> </Property>
<Property <Property

View File

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

View File

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

View File

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

View File

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