Advertisement
lowheartrate

views/registration_form_details.php

Mar 30th, 2019
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.21 KB | None | 0 0
  1. <!-- heading -->
  2. <h2 class="montserrat_semibold">Account details</h2>
  3.  
  4. <!-- sub heading -->
  5. <p class="montserrat_light" style="margin-top:-20px;">These are <strong>optional</strong> but <strong>highly recommended</strong> to setup your profile.</p>
  6.  
  7. <!-- birthday -->
  8. <p class="montserrat_regular">Birthday</p>
  9. <input type="date" name="dob" class="input input100 montserrat_light" style="margin-top:-10px;" value="<?php if (isset($_POST['dob'])) {echo $_POST['dob'];}?>" />
  10.  
  11. <!-- BreaK -->
  12. <br />
  13.  
  14. <!-- Social link(s) -->
  15. <p class="montserrat_regular" style="margin-top:30px;margin-bottom:10px;">Social link(s)</p>
  16.  
  17. <!-- Discord -->
  18. <?php require 'views/open_window.js'; ?>
  19. <input type="button" name="socialdiscord" class="input input_spacing input100 montserrat_light discord_input" id="discord_id" onclick="OpenWindow()" value="Sync discord" readonly />
  20.  
  21. <!-- Steam & Twitter -->
  22. <input type="text" name="socialsteam" placeholder="steam profile" class="input input_spacing input_half montserrat_light" style="margin-top:-10px;" value="<?php if (isset($_POST['socialsteam'])) {echo $_POST['socialsteam'];}?>" />
  23. <input type="text" name="socialtwitter" placeholder="twitter profile" class="input input_spacing input_half montserrat_light" style="margin-top:-10px;" value="<?php if (isset($_POST['socialtwitter'])) {echo $_POST['socialtwitter'];}?>" />
  24.  
  25. <!-- Instagram & YouTube -->
  26. <input type="text" name="socialinstagram" placeholder="instagram profile" class="input input_spacing input_half montserrat_light" value="<?php if (isset($_POST['socialinstagram'])) {echo $_POST['socialinstagram'];}?>" />
  27. <input type="text" name="socialyoutube" placeholder="youtube channel" class="input input_spacing input_half montserrat_light" value="<?php if (isset($_POST['socialyoutube'])) {echo $_POST['socialyoutube'];}?>" />
  28.  
  29. <!-- BreaK -->
  30. <br />
  31.  
  32. <!-- avatar uploader -->
  33. <p class="montserrat_regular">Avatar uploader</p>
  34. <p class="montserrat_light" style="float:left;margin-top:0;margin-right:10px;">Select an image to upload</p>
  35. <input type="file" name="avatar" accept=".jpeg,.jpg,.png" style="margin-bottom:10px;"/>
  36.  
  37. <!-- check for any errors in registration form -->
  38. <?php require 'controllers/check_registration_errors.php'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement