2017-07-04 03:21:19 +00:00
|
|
|
import React, { Component } from 'react';
|
2017-06-07 01:44:02 +00:00
|
|
|
import translate from 'translations';
|
|
|
|
|
|
|
|
export default class MnemonicDecrypt extends Component {
|
2017-07-04 03:21:19 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<section className="col-md-4 col-sm-6">
|
|
|
|
<div id="selectedUploadKey">
|
|
|
|
<h4>{translate('ADD_Radio_2_alt')}</h4>
|
2017-06-07 01:44:02 +00:00
|
|
|
|
2017-07-04 03:21:19 +00:00
|
|
|
<div className="form-group">
|
|
|
|
<input type="file" id="fselector" />
|
2017-06-07 01:44:02 +00:00
|
|
|
|
2017-07-04 03:21:19 +00:00
|
|
|
<a
|
|
|
|
className="btn-file marg-v-sm"
|
|
|
|
id="aria1"
|
|
|
|
tabIndex="0"
|
|
|
|
role="button"
|
|
|
|
>
|
|
|
|
{translate('ADD_Radio_2_short')}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|