Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. <div class="description">
  2. <h1 id="pName"><?php echo $nama;?></h1>
  3. <p id="pRole"><?php echo $role;?></p>
  4. <a href="#input-form" class="button bg-green" onclick="editForm()">Edit</a>
  5. <a href="#" class="button border-blue">Resume</a>
  6. </div>
  7. <div class = "information">
  8. <div class="data">
  9. <p class="field">Availability</p>
  10. <p id = "pAvailabel" class="text-gray"><?php echo $availability; ?></p>
  11. </div>
  12. <div class="data">
  13. <p class="field">Age</p>
  14. <p id = "pAge" class="text-gray"><?php echo $age; ?></p>
  15. </div>
  16. <div class="data">
  17. <p class="field">Location</p>
  18. <p id = "pLocation" class="text-gray"><?php echo $location; ?></p>
  19. </div>
  20. <div class="data">
  21. <p class="field">Years Experience</p>
  22. <p id = "pYears" class="text-gray"><?php echo $experience; ?></p>
  23. </div>
  24. <div class="data">
  25. <p class="field">Email</p>
  26. <p id = "pEmail" class="text-gray"><?php echo $email; ?></p>
  27. </div>
  28. </div>
  29. </section>
  30.  
  31.  
  32. <section id="input-form">
  33.  
  34. <form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>">
  35. <div class ="form">
  36. <label>Id User</label>
  37. <input id ="inpIdUser"type="text" name="id_user" placeholder="Masukan Nama Anda" value= "<?php echo $id; ?>">
  38. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement