Guest User

Untitled

a guest
Dec 3rd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. <form class="phorm2" action="" method='post' id="sign_up_form">
  2. <ul class="shortLabels">
  3. <li><h2>Sign Up for Free Kiki Membership</h2></li>
  4. <li>
  5. <label for="account-first_name">First name:</label><input type="text" name="account[first_name]" value="<?php echo $account->firstName ?>" id="account-first_name">
  6. <label class="error" for="name" id="name_error" style="display:none;">This field is required.</label>
  7. </li>
  8. <li>
  9. <label for="account-last_name">Last name:</label><input type="text" name="account[last_name]" value="<?php echo $account->lastName ?>" id="account-last_name">
  10. </li>
  11.  
  12. <li>
  13. <label for="account-email">Email:</label><input type="text" name="account[email]" value="<?php echo $account->email ?>" id="account-email">
  14. </li>
  15. <li>
  16. <label for="billing-country" class="short">Country:</label>
  17. <select title="country" id="billing-country" name="account[country]" class="billing_countries">
  18. <?php foreach(Cart66Common::getCountries(true) as $code => $name): ?>
  19. <option value="<?php echo $name ?>" <?php if($code == $billingCountryCode) { echo 'selected="selected"'; } ?>><?php echo $name ?></option>
  20. <?php endforeach; ?>
  21. </select>
  22. </li>
  23.  
  24. <li>
  25. <label for="account-username">Username:</label><input type="text" name="account[username]" value="<?php echo $account->username ?>" id="account-username">
  26. </li>
  27. <li>
  28. <label for="account-password">Password:</label><input type="password" name="account[password]" value="" id="account-password">
  29. </li>
  30. <li>
  31. <label for="account-password2">&nbsp;</label><input type="password" name="account[password2]" value="" id="account-password2">
  32. <p class="description">Repeat password</p>
  33. </li>
  34. <li>
  35. <input type="checkbox" checked="" name="account[newsletter]" id="account-newsletter">Would you like to subscribe to our newsletter?
  36. </li>
  37. <input type=hidden value="new" name="fnewuser"/>
  38. </ul>
  39. <input type=submit class="button" value="Create Account" />
  40. </form>
Add Comment
Please, Sign In to add comment