Skip to content

Commit

Permalink
Update signup.twig
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkIncognito85 authored Sep 4, 2022
1 parent b1fb4f8 commit 5f2793d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Theme/Argon/Views/Auth/signup.twig
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@
{{ field('password', null, trans("password"), {'type': 'password', 'class':'pwd-field'}) }}
{{ field('password_confirm', null, trans("confirmation"), {'type': 'password', 'class':'pwd-field'}) }}


{{ field('question_id', null, trans("question_security.field1"),{options: questions}) }}
{{ field('question_reply', null, trans("question_security.field2")) }}
{% if options is not empty %}

{{ field('how_did_you_find_us', null, trans("how_did_you_find_us"), {options: options}) }}
{{ field('how_did_you_find_us_none', null, null, {label: false}, {style:'display:none;'}) }}
{% endif %}
<div class="mt-3" style="text-align: center;">
{{ recaptcha() }}
</div>
{% if setting('tosLinks') %}
<div class="col-md-12 col-sm-12">
<div class="form-check form-switch">
Expand All @@ -46,7 +57,6 @@
</div>
{% endif %}


<button class="btn btn-primary w-100 my-4 mb-2">{{ trans("register") }}</button>
<p class="text-sm mt-3 mb-0">{{ trans("account.signup.alreadyclient") }} <a href="{{ path('auth.login') }}" class="text-dark font-weight-bolder">{{ trans("login") }}</a></p>
</form>
Expand Down

0 comments on commit 5f2793d

Please sign in to comment.