diff --git a/app/assets/javascripts/templates/registration/about.html.haml b/app/assets/javascripts/templates/registration/about.html.haml index b1065d104c..47d9a6012a 100644 --- a/app/assets/javascripts/templates/registration/about.html.haml +++ b/app/assets/javascripts/templates/registration/about.html.haml @@ -1,5 +1,5 @@ .container#registration-about - .row.header + .header %h2 Nice one! %h5 Now let's flesh out the details about {{ enterprise.name }}. %ng-include{ src: "'registration/steps.html'" } diff --git a/app/assets/javascripts/templates/registration/address.html.haml b/app/assets/javascripts/templates/registration/address.html.haml index f395703a1b..4c7736722b 100644 --- a/app/assets/javascripts/templates/registration/address.html.haml +++ b/app/assets/javascripts/templates/registration/address.html.haml @@ -1,5 +1,5 @@ .container#registration-address - .row.header + .header %h2 Hi there, {{ enterprise.name }} %h5 Now we need to know where you are: %ng-include{ src: "'registration/steps.html'" } @@ -37,6 +37,7 @@ %input{ type: 'checkbox', id: 'enterprise_on_map', ng: { model: 'enterprise.on_map' } } Blur my location on the map (show an approximate, not exact pin) .row.buttons - .small-12.columns - %input.button.primary.left{ type: "button", value: "Back", ng: { click: "select('details')" } } + .small-12.medium-6.columns + %input.button.secondary{ type: "button", value: "Back", ng: { click: "select('details')" } } + .small-12.medium-6.columns %input.button.primary.right{ type: "button", value: "Continue", ng: { click: "select('contact')" } } diff --git a/app/assets/javascripts/templates/registration/contact.html.haml b/app/assets/javascripts/templates/registration/contact.html.haml index fe342d73e0..132a4c6543 100644 --- a/app/assets/javascripts/templates/registration/contact.html.haml +++ b/app/assets/javascripts/templates/registration/contact.html.haml @@ -1,5 +1,5 @@ .container#registration-contact - .row.header + .header %h2 Last step to create your enterprise! %h5 Who is responsible for managing {{ enterprise.name }}? %ng-include{ src: "'registration/steps.html'" } diff --git a/app/assets/javascripts/templates/registration/finished.html.haml b/app/assets/javascripts/templates/registration/finished.html.haml index b2150f8f1c..92ec44ab30 100644 --- a/app/assets/javascripts/templates/registration/finished.html.haml +++ b/app/assets/javascripts/templates/registration/finished.html.haml @@ -1,8 +1,8 @@ .container#registration-finished - .row.header + .header %h2 Well done! %h5 You have successfully completed the profile for {{ enterprise.name }}! - .row.content{ style: 'text-align: center'} + .content{ style: 'text-align: center'} %h3 Why not check it out on the Open Food Network? %a.button.primary{ type: "button", href: "/map" } Go to Map Page > diff --git a/app/assets/javascripts/templates/registration/images.html.haml b/app/assets/javascripts/templates/registration/images.html.haml index 92c3c9f703..696a0d7b16 100644 --- a/app/assets/javascripts/templates/registration/images.html.haml +++ b/app/assets/javascripts/templates/registration/images.html.haml @@ -1,5 +1,5 @@ .container#registration-images - .row.header + .header %h2 Thanks! %h5 Let's upload some pretty pictures so your profile looks great! :) %ng-include{ src: "'registration/steps.html'" } diff --git a/app/assets/javascripts/templates/registration/introduction.html.haml b/app/assets/javascripts/templates/registration/introduction.html.haml index 43e8e1407a..8a4f4f7e02 100644 --- a/app/assets/javascripts/templates/registration/introduction.html.haml +++ b/app/assets/javascripts/templates/registration/introduction.html.haml @@ -1,5 +1,5 @@ %div - .row.header + .header %h2 Hi there! %h4 This wizard will step you through creating a profile .row @@ -33,7 +33,7 @@ %li %i.ofn-i_040-hub A pin on the OFN map - + .row .small-12.columns %hr %input.button.primary{ type: "button", value: "Let's get started!", ng: { click: "select('details')" } } diff --git a/app/assets/javascripts/templates/registration/social.html.haml b/app/assets/javascripts/templates/registration/social.html.haml index 40717b6190..a5458b2b3e 100644 --- a/app/assets/javascripts/templates/registration/social.html.haml +++ b/app/assets/javascripts/templates/registration/social.html.haml @@ -1,5 +1,5 @@ .container#registration-social - .row.header + .header %h2 Last step! %h5 How can people find {{ enterprise.name }} online? %ng-include{ src: "'registration/steps.html'" } diff --git a/app/assets/javascripts/templates/registration/steps.html.haml b/app/assets/javascripts/templates/registration/steps.html.haml index ea1e57a306..65e3cb6b48 100644 --- a/app/assets/javascripts/templates/registration/steps.html.haml +++ b/app/assets/javascripts/templates/registration/steps.html.haml @@ -1,5 +1,5 @@ .row#progress-bar .small-12.medium-2.columns.item{ ng: { repeat: 'step in steps', class: "{active: (currentStep() == step),'show-for-medium-up': (currentStep() != step)}" } } - {{ step }} + {{ $index+1 + ". " + step }} \ No newline at end of file