Skip to content

Commit

Permalink
input password in modalUpload
Browse files Browse the repository at this point in the history
input type=password in modalUpload
  • Loading branch information
fernandezOli committed Apr 4, 2024
1 parent 1123715 commit d937f79
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/modals/ModalUpload.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ const ModalUpload = ({ isUploadShowing, cancelFunc, validFunc, pathUpload, maxBl
<div><span style={{marginLeft: "30px"}}>Pinata key:</span>
<div><input className="modal_upload_input_key"
id="inputApiKey"
type="password"
placeholder="Your Pinata key"
value={ApiKey}
onChange={(e) => { setApiKey(e.target.value); }}
Expand All @@ -96,6 +97,7 @@ const ModalUpload = ({ isUploadShowing, cancelFunc, validFunc, pathUpload, maxBl
<div><span style={{marginLeft: "30px"}}>Pinata secret key:</span>
<div><input className="modal_upload_input_key"
id="inputSecretKey"
type="password"
placeholder="Your Pinata secret key"
value={SecretApiKey}
onChange={(e) => { setSecretApiKey(e.target.value); }}
Expand Down

0 comments on commit d937f79

Please sign in to comment.