Skip to content

Commit

Permalink
xdx
Browse files Browse the repository at this point in the history
  • Loading branch information
F1xGOD authored Feb 21, 2024
1 parent 4b05de2 commit 9280693
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions account.html
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,12 @@
document.getElementById("inputPassword").placeholder=atob(user.password)
document.getElementById("inputCPassword").placeholder=atob(user.password)
var udetails=user.details;
document.getElementById("inputInfo").placeholder=udetails.info
document.getElementById("inputName").placeholder=udetails.aname
document.getElementById("inputEmailAddress").placeholder=udetails.email
if(udetails.info!=""){
document.getElementById("inputInfo").placeholder=udetails.info}
if(udetails.aname!=""){
document.getElementById("inputName").placeholder=udetails.aname}
if(udetails.email!=""){
document.getElementById("inputEmailAddress").placeholder=udetails.email}
}
}
checkREADY22(true)
Expand Down Expand Up @@ -336,7 +339,7 @@
</div>

<div class="col-md-6">
<label class="small mb-1" for="inputInfo">Birthday</label>
<label class="small mb-1" for="inputInfo">Additional Info</label>
<input class="form-control" id="inputInfo" type="text" name="innfo" placeholder="Enter Any Additional Info" value="">
</div>
</div>
Expand Down

0 comments on commit 9280693

Please sign in to comment.