Created
March 31, 2020 03:50
-
-
Save anta40/0bfbe9db0f36c6b6ffcaeecb642e359d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<html lang="en"> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Update Profile</title> | |
</head> | |
<body> | |
<form action="http://localhost/idstar/api/profile?X-Api-Key=idstar123!&X-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRhIjp7ImlkIjoiMTMyIn0sImlhdCI6MTU4NTYyMjc5NSwiZXhwIjoxNTg1NjI5OTk1fQ.3HR9YC21j-46xriB6-Q-UceSEp9enWQPO6FiTp_mV3M" method="post" enctype="multipart/form-data"> | |
<p>Full name: <input type="text" name="fullname" value=""> | |
<p>Title: <input type="text" name="job_title" value=""> | |
<p>Date of Birth: <input type="date" name="date_of_birth" value="2018-07-22"> | |
<p>Contact number: <input type="text" name="contact_no" value=""> | |
<p>Gender: | |
<input type="radio" id="male" name="gender" value="male"> | |
<label for="male">Male</label> | |
<input type="radio" id="female" name="gender" value="female"> | |
<label for="female">Female</label><br> | |
<p>Marital status: | |
<input type="radio" id="single" name="marital_status" value="single"> | |
<label for="single">Single</label> | |
<input type="radio" id="married" name="marital_status" value="married"> | |
<label for="married">Married</label><br> | |
<p>Address: <input type="text" name="address" value=""> | |
<p>ZIP code: <input type="text" name="zipCode" value=""> | |
<p>Province: <input type="text" name="province" value=""> | |
<p>Country: <input type="text" name="country" value=""> | |
<p>Summary: <input type="text" name="summary" value=""> | |
<p><input type="file" name="resume"> | |
<p><button type="submit">Update Profile</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment