mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
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
20 lines
608 B
Twig
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 %}
|