aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/js/account.jsx
diff options
context:
space:
mode:
authorjloup <jloup@jloup.work>2018-05-14 12:38:00 +0200
committerjloup <jloup@jloup.work>2018-05-14 12:38:00 +0200
commita6820180928670b0642fa6a28ac221ce158230bb (patch)
treebe56c7282892ecd3d436d773fb21b6dc1230cc3c /cmd/web/js/account.jsx
parent2e4885d98ec49203180deb7e4e9148762e4720e7 (diff)
downloadFront-a6820180928670b0642fa6a28ac221ce158230bb.tar.gz
Front-a6820180928670b0642fa6a28ac221ce158230bb.tar.zst
Front-a6820180928670b0642fa6a28ac221ce158230bb.zip
JS clean.v0.0.15
Diffstat (limited to 'cmd/web/js/account.jsx')
-rw-r--r--cmd/web/js/account.jsx10
1 files changed, 4 insertions, 6 deletions
diff --git a/cmd/web/js/account.jsx b/cmd/web/js/account.jsx
index 988d840..9a976f4 100644
--- a/cmd/web/js/account.jsx
+++ b/cmd/web/js/account.jsx
@@ -177,12 +177,10 @@ class PoloniexCredentialsForm extends React.Component {
177 <div className="row"> 177 <div className="row">
178 <div className="col-12"> 178 <div className="col-12">
179 <form role="form" onSubmit={this.handleSubmit}> 179 <form role="form" onSubmit={this.handleSubmit}>
180 <label className="w-100">Key: 180 <label className="w-100">Key:</label>
181 <input className="form-control" type="text" placeholder="key" value={keyDisplayed} onChange={this.handleApiKeyChange} disabled={!this.props.editMode}/> 181 <input className="form-control" type="text" value={keyDisplayed} onChange={this.handleApiKeyChange} disabled={!this.props.editMode}/>
182 </label> 182 <label className="w-100">Secret:</label>
183 <label className="w-100">Secret: 183 <input className="form-control" type="text" value={secretDisplayed} onChange={this.handleApiSecretChange} disabled={!this.props.editMode}/>
184 <input className="form-control" type="text" placeholder="secret" value={secretDisplayed} onChange={this.handleApiSecretChange} disabled={!this.props.editMode}/>
185 </label>
186 <input className="form-control submit" type={submitType} value="Save" /> 184 <input className="form-control submit" type={submitType} value="Save" />
187 <button className="form-control submit" style={{display: buttonDisplay}} onSubmit={null} onClick={this.props.onEditClick} type="button">Show/Edit</button> 185 <button className="form-control submit" style={{display: buttonDisplay}} onSubmit={null} onClick={this.props.onEditClick} type="button">Show/Edit</button>
188 </form> 186 </form>