templates/registration/register.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Register{% endblock %}
  3. {% block body %}
  4.     <div class="grid-container">
  5.         <div class="grid-x grid-padding-x grid-padding-y">
  6.             <div class="small-12 cell">
  7.                 <h1 style="text-align: center; margin-top: 75px;">Register an Account</h1>
  8.             </div>
  9.             <div class="small-12 medium-4 medium-offset-2 cell" style="margin-top: 30px;">
  10.                 {{ form_start(registrationForm) }}
  11.                 {{ form_row(registrationForm.email) }}
  12.                 {{ form_row(registrationForm.plainPassword, {
  13.                     label: 'Password'
  14.                 }) }}
  15. {#                <div style="display: block; height: 50px;">#}
  16. {#                     <span style="float: left; margin-right: 10px;">{{ form_widget(registrationForm.agreeTerms) }}</span>#}
  17. {#                    <span style="float: left;">{{ form_label(registrationForm.agreeTerms, 'Agree to Terms and Conditions') }}</span>#}
  18. {#                </div>#}
  19.                 <div style="display: block; text-align: center;">
  20.                     <button type="submit" class="button" style="width: 100%; display: block; font-weight: bold; font-size: 1.15em;">Register Email</button>
  21.                 </div>
  22.                 {{ form_end(registrationForm) }}
  23.             </div>
  24.             <div class="small-12 medium-4 end cell" style="margin-top: 50px; padding-left: 50px; margin-left: 40px; border-left: 2px dashed #263e70;">
  25.                 <a href="/connect/google" class="button" style="display: block; background: #4c8bf5; color: #fff; font-size: 1.1em; font-weight: bold;">Register with Google</a>
  26.             </div>
  27.             <div class="small-12 medium-8 medium-offset-2 cell">
  28.                 <p style="font-size: .8em;"><strong>Terms and Conditions</strong><br>
  29.                     Fisher's Quest utilizes the <a href="https://thetatoken.org" target="_blank">Theta Blockchain</a> to generate and store NFTs that
  30.                     are both collectible and usable in game. Users interact with this Dapp through the <a href="https://chrome.google.com/webstore/detail/theta-wallet/ckelpdlfgochnkdgikcgbimdcfgpkhgk/related?hl=en&authuser=0" target="_blank">Theta Wallet Browser Extension</a>. Fisher's Quest is not responsible for the security
  31.                     of individual user wallets created on the Theta Blockchain. By registering an account you agree to these terms.</p>
  32.             </div>
  33.         </div>
  34.     </div>
  35. {% endblock %}