-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -262,6 +262,10 @@ | |
document.getElementById("inputUsername").placeholder=atob(user.username) | ||
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 | ||
} | ||
} | ||
checkREADY22(true) | ||
|
@@ -321,19 +325,19 @@ | |
|
||
<div class="mb-3"> | ||
<label class="small mb-1" for="inputEmailAddress">Email Address</label> | ||
<input class="form-control" id="inputEmailAddress" type="email" placeholder="Enter your email address" value="[email protected]"> | ||
<input class="form-control" id="inputEmailAddress" type="email" placeholder="Enter your email address" value=""> | ||
</div> | ||
|
||
<div class="row gx-3 mb-3"> | ||
|
||
<div class="col-md-6"> | ||
<label class="small mb-1" for="inputPhone">Phone Number</label> | ||
<input class="form-control" id="inputPhone" type="tel" placeholder="Enter your phone number" value="+88005553535"> | ||
<label class="small mb-1" for="inputName">Name</label> | ||
<input class="form-control" id="inputName" type="text" placeholder="Enter Your Actual Name" value=""> | ||
</div> | ||
|
||
<div class="col-md-6"> | ||
<label class="small mb-1" for="inputBirthday">Birthday</label> | ||
<input class="form-control" id="inputBirthday" type="text" name="birthday" placeholder="Enter your birthday" value="01/01/2000"> | ||
<label class="small mb-1" for="inputInfo">Birthday</label> | ||
<input class="form-control" id="inputInfo" type="text" name="innfo" placeholder="Enter Any Additional Info" value=""> | ||
</div> | ||
</div> | ||
|
||
|