Guest User

Untitled

a guest
Nov 23rd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. <?php $userInfo = $dreamCloud->userInfo($_SESSION['uid']);
  2. $first = $userInfo['firstname'];
  3. $last = $userInfo['lastname'];
  4. $age = $userInfo['age'];
  5. ?>
  6. <div id="settings">
  7. <div id="title">
  8. <h2>Settings</h2><p id="subtitle" class="clean">Edit your settings!</p>
  9. <? echo $_POST['age'];?>
  10. </div><!-- page title end-->
  11. <form id="settings" class="form" method="post" action="index.php?p=settings">
  12. <p id="firstname">
  13. <input id="firstname" type="text" name="firstname" placeholder="<?php echo $first; ?>" title="Change your firstname!<br/> <p class='current'>Current: <?php echo $first;?></p>" />
  14. </p>
  15.  
  16. <p class="lastname">
  17. <input type="text" name="lastname" placeholder="<?php echo $last; ?>" title="Change your lastname!<br/> <p class='current'>Current: <?php echo $last;?></p>" />
  18. </p>
  19.  
  20. <p class="password">
  21. <input type="text" name="password" placeholder="Password" title="Change your password!"/>
  22. <input type="text" name="cpassword" placeholder="Confirm password" title="Confirm your password!"/>
  23. </p>
  24. <p class="age">
  25. <input id="age" type="text" name="age" placeholder="Age" title="Type your age with numbers, example: 27.<br/> <p class='current'>Current: <?php echo $age;?></p>" />
  26. </p>
  27. <?php if($gender==0) echo'
  28. <input type="radio" name="gender" value="0" title="So you are a boy ?" checked /> Male
  29. <input type="radio" name="gender" value="1" title="So you are a girl ?" /> Female';
  30. else echo'
  31. <input type="radio" name="gender" value="1" title="So you are a girl ?"checked /> Female
  32. <input type="radio" name="gender" value="0" title="So you are a boy ?" /> Male';
  33. ?>
  34.  
  35. <p class="submit">
  36. <input type="submit" name="submit" value="Save" />
  37. </p>
  38. </form>
  39. </div>
Add Comment
Please, Sign In to add comment