templates/registration/register.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}Register{% endblock %}
{% block body %}
<div class="grid-container">
<div class="grid-x grid-padding-x grid-padding-y">
<div class="small-12 cell">
<h1 style="text-align: center; margin-top: 75px;">Register an Account</h1>
</div>
<div class="small-12 medium-4 medium-offset-2 cell" style="margin-top: 30px;">
{{ form_start(registrationForm) }}
{{ form_row(registrationForm.email) }}
{{ form_row(registrationForm.plainPassword, {
label: 'Password'
}) }}
{# <div style="display: block; height: 50px;">#}
{# <span style="float: left; margin-right: 10px;">{{ form_widget(registrationForm.agreeTerms) }}</span>#}
{# <span style="float: left;">{{ form_label(registrationForm.agreeTerms, 'Agree to Terms and Conditions') }}</span>#}
{# </div>#}
<div style="display: block; text-align: center;">
<button type="submit" class="button" style="width: 100%; display: block; font-weight: bold; font-size: 1.15em;">Register Email</button>
</div>
{{ form_end(registrationForm) }}
</div>
<div class="small-12 medium-4 end cell" style="margin-top: 50px; padding-left: 50px; margin-left: 40px; border-left: 2px dashed #263e70;">
<a href="/connect/google" class="button" style="display: block; background: #4c8bf5; color: #fff; font-size: 1.1em; font-weight: bold;">Register with Google</a>
</div>
<div class="small-12 medium-8 medium-offset-2 cell">
<p style="font-size: .8em;"><strong>Terms and Conditions</strong><br>
Fisher's Quest utilizes the <a href="https://thetatoken.org" target="_blank">Theta Blockchain</a> to generate and store NFTs that
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
of individual user wallets created on the Theta Blockchain. By registering an account you agree to these terms.</p>
</div>
</div>
</div>
{% endblock %}