mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
Added default email(admin) in forms.
This commit is contained in:
parent
f190009850
commit
155a6e5ebb
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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'
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user