Skip to content

Commit

Permalink
Merge branch 'develop' into fix/make-faucet-mtamask-component
Browse files Browse the repository at this point in the history
  • Loading branch information
adibas03 authored Mar 3, 2018
2 parents a8932f7 + 4972549 commit 61af5f1
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions app/components/TimeNode/TimeNodeProve.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,60 +44,60 @@ class TimeNodeProve extends Component {
const myAddress = this.props.timeNodeStore.getMyAddress();

return (
<div id="timeNodeProve" className="tab-content">
<div className="tab-pane active show">
<div id='timeNodeProve' className='tab-content'>
<div className='tab-pane active show'>
<h2>Sign to prove DAY ownership</h2>

<div className="row">
<div className="col-md-6">
<div className='row'>
<div className='col-md-6'>
<p>The TimeNode functionality requires DAY tokens as a proof of ownership. By signing the TimeNode address using your DAY token account, you provide us with the necessary information to determine your DAY token balance.</p>
<p>Please note that the signing process will not give us any control over your DAY tokens.</p>
<p>Follow these steps to complete the setup:</p>
<ol>
<li>Visit <a href="https://www.mycrypto.com/signmsg.html" target="_blank" rel="noopener noreferrer">https://www.mycrypto.com/signmsg.html</a></li>
<li>Visit <a href='https://www.mycrypto.com/signmsg.html' target='_blank' rel='noopener noreferrer'>https://www.mycrypto.com/signmsg.html</a></li>
<li>Sign a message using your wallet. Use the following as the message content:
<div className="row">
<div className="col-md-8">
<div className="form-group">
<input id="copyAddress" className="form-control" defaultValue={myAddress}/>
<div className='row'>
<div className='col-md-8'>
<div className='form-group'>
<input id='copyAddress' className='form-control' defaultValue={myAddress}/>
</div>
</div>
<div className="col-md-4">
<button className="btn btn-white" onClick={this.toClipboard}>Copy</button>
<div className='col-md-4'>
<button className='btn btn-white' onClick={this.toClipboard}>Copy</button>
</div>
</div>
</li>
<li>Copy generated signature</li>
<li>Paste the whole generated signature into the Signature field</li>
</ol>
<a href="#">Watch Tutorial</a>
<a className='d-none' target='_blank' rel='noopener noreferrer'>Watch Tutorial</a>
</div>

<div className="col-md-6 mt-3">
<div id="signatureCheck" className="form-group form-group-default">
<div className='col-md-6 mt-3'>
<div id='signatureCheck' className='form-group form-group-default'>
<label>Signature from MyEtherWallet</label>
<textarea
placeholder="Paste Your Signature Here"
className="form-control h-100"
placeholder='Paste Your Signature Here'
className='form-control h-100'
ref={(el) => this.signatureRef = el} />
</div>
</div>

</div>
</div>

<div className="row">
<div className="col-md-6 d-none d-md-block">
<PoweredByEAC className="col-md-2" />
<div className='row'>
<div className='col-md-6 d-none d-md-block'>
<PoweredByEAC className='col-md-2' />
</div>
<div className="col-md-6">
<button id="verifyDayTokensBtn"
className="btn btn-primary pull-right mr-4 px-5"
type="button"
<div className='col-md-6'>
<button id='verifyDayTokensBtn'
className='btn btn-primary pull-right mr-4 px-5'
type='button'
onClick={this.verifyDayTokens}>Verify</button>
</div>
<div className="d-sm-inline d-md-none">
<PoweredByEAC className="mt-5"/>
<div className='d-sm-inline d-md-none'>
<PoweredByEAC className='mt-5'/>
</div>
</div>
</div>
Expand Down

0 comments on commit 61af5f1

Please sign in to comment.