diff --git a/app/Resources/SyliusWebBundle/views/Frontend/Checkout/Step/security.html.twig b/app/Resources/SyliusWebBundle/views/Frontend/Checkout/Step/security.html.twig new file mode 100644 index 00000000000..5a0e211e87d --- /dev/null +++ b/app/Resources/SyliusWebBundle/views/Frontend/Checkout/Step/security.html.twig @@ -0,0 +1,104 @@ +{% extends '@SyliusWeb/Frontend/layout.html.twig' %} + +{% block title %} + - Checkout +{% endblock %} + +{% block topbar %} + +{% endblock %} + +{% block content %} + + {{ parent() }} + +
+
+ + + +
+
+
+
+
+

New account

+
+
+ {{ form_errors(registration_form) }} + +
+ {{ form_label(registration_form.email, null, {'label_attr': {'class': 'text-muted pull-left'}}) }} + {{ form_widget(registration_form.email) }} + {{ form_errors(registration_form.email) }} +
+
+ {{ form_label(registration_form.user.plainPassword.first, null, {'label_attr': {'class': 'text-muted pull-left'}}) }} + {{ form_widget(registration_form.user.plainPassword.first) }} + {{ form_errors(registration_form.user.plainPassword.first) }} +
+
+ {{ form_label(registration_form.user.plainPassword.second, null, {'label_attr': {'class': 'text-muted pull-left'}}) }} + {{ form_widget(registration_form.user.plainPassword.second) }} + {{ form_errors(registration_form.user.plainPassword.second) }} +
+
+ {{ form_label(registration_form.firstName, null, {'label_attr': {'class': 'text-muted pull-left'}}) }} + {{ form_widget(registration_form.firstName) }} + {{ form_errors(registration_form.firstName) }} +
+
+ {{ form_label(registration_form.lastName, null, {'label_attr': {'class': 'text-muted pull-left'}}) }} + {{ form_widget(registration_form.lastName) }} + {{ form_errors(registration_form.lastName) }} +
+ +
+ +
+ + +
+
+
+ +
+
+
+

Login

+
+
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+
+
+ +{% endblock %}