Sylius/app/Resources/FOSUserBundle/views/Registration/register.html.twig
headrevision bc49f46cfe reference implementation of Sylius user login/registration by OAuth sign-in provider account (incomplete)
added step to initially grant access for app in OAuth login scenarios
disabled cache clearing
removed obsolete code
restored cache clearing
added given step to OAuth login scenarios
set placeholder values for resource owner client id + secret
execute scenarios with saucelabs on travic ci apache
added phpspec for oauth user provider
used local selenium server for travis ci instead of sauce labs
2013-10-30 10:24:57 +01:00

20 lines
608 B
Twig

{% extends 'SyliusWebBundle:Frontend:layout.html.twig' %}
{% block content %}
<div class="page-header">
<h1>Registration <small>Create an account in store</small></h1>
</div>
{{ render url('hwi_oauth_connect') }}
<form action="{{ path('fos_user_registration_register') }}" method="post" novalidate class="form-horizontal">
<fieldset class="well">
{% for field in form %}
{{ form_row(field) }}
{% endfor %}
</fieldset>
<div class="form-actions">
<button type="submit" class="btn btn-success btn-large span3"><i class="icon-user"></i> Register</button>
</div>
</form>
{% endblock %}