diff --git a/app/views/users/getting_started/1.html.haml b/app/views/users/getting_started/1.html.haml index ca743df5f..395845ec1 100644 --- a/app/views/users/getting_started/1.html.haml +++ b/app/views/users/getting_started/1.html.haml @@ -71,6 +71,3 @@ .submit_block = person.submit "Save and continue →" -/.bottom_notification -/ .blue_button -/ SKIP diff --git a/app/views/users/getting_started/2.html.haml b/app/views/users/getting_started/2.html.haml index ffb7e5cc8..0516cdd9f 100644 --- a/app/views/users/getting_started/2.html.haml +++ b/app/views/users/getting_started/2.html.haml @@ -35,13 +35,13 @@ %h3 Your aspects .description - Diaspora aspects are mappings of your real-life aspects. You can manage these later by clicking the manage tab on the top right. + Diaspora aspects are mappings of your real-life aspects. You can manage these later by clicking the manage tab on the top right. Your aspects are unique to you, and not visible by others. %h4 Aspect name - - form_for Aspect.new, :remote => true do |aspect| - = aspect.text_field :name, :style => "display:inline;" - = aspect.submit "Add" + - form_for Aspect.new, :remote => true do |aspect| + = aspect.text_field :name, :style => "display:inline;" + = aspect.submit "Add" %ul.aspects - for aspect in @aspects @@ -63,4 +63,5 @@ %br .submit_block + = link_to "Back", getting_started_path(1), :class => "button" = link_to "Save and continue →", getting_started_path(3), :class => "button" diff --git a/app/views/users/getting_started/3.html.haml b/app/views/users/getting_started/3.html.haml index 13725bfc4..e2271d545 100644 --- a/app/views/users/getting_started/3.html.haml +++ b/app/views/users/getting_started/3.html.haml @@ -20,7 +20,10 @@ .span-15.last .floating - %h3 Your services + %h3 + Your services + .description + Connect your existing social networks to your Diaspora account. You will be able to post publically through your Everyone tab when you select "public." %ul#stream - for service in @services %h3 @@ -34,4 +37,5 @@ %h4= link_to "Connect to facebook", "/auth/facebook" if SERVICES['facebook']['app_id'] !="" .submit_block + = link_to "Back", getting_started_path(2), :class => "button" = link_to "Save and continue →", getting_started_path(4), :class => "button" diff --git a/app/views/users/getting_started/4.html.haml b/app/views/users/getting_started/4.html.haml index a1cfef842..c90de31cd 100644 --- a/app/views/users/getting_started/4.html.haml +++ b/app/views/users/getting_started/4.html.haml @@ -21,7 +21,36 @@ .span-15.last .floating %h1 - You're all set up! + = "You're all set up, #{current_user.person.profile.first_name}!" + .description + You're now ready to start sharing with + %ul.inline_aspect_listing + - for aspect in @aspects + %li= aspect + + %br + %br + + %h3 = link_to "Continue on to your everyone page, an overview of all of your aspects.", root_path + %br + %br + %br + + %p + You can change your profile any time by clicking + %b edit profile + in your user menu (top right). + %p + You can connect/disconnect your services any time by clicking + %b edit account + in your user menu (top right). + %p + You can manage your aspects any time by clicking the + %b manage + tab. Your contacts can also be added while on a particular aspect page, as well. + + .submit_block + = link_to "Back", getting_started_path(3), :class => "button" diff --git a/config/locales/diaspora/en.yml b/config/locales/diaspora/en.yml index 91b80deab..0165b8262 100644 --- a/config/locales/diaspora/en.yml +++ b/config/locales/diaspora/en.yml @@ -117,6 +117,12 @@ en: edit: editing_profile: "Editing profile" destroy: "Account successfully closed." + getting_started: + '1': + albums: "Albums" + you_dont_have_any_photos: "You don't have any photos! Go to the" + page_to_upload_some: "page to upload some." + or: "or" comments: comment: ago: "ago" diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass index 6860a7301..734a6190c 100644 --- a/public/stylesheets/sass/application.sass +++ b/public/stylesheets/sass/application.sass @@ -393,8 +393,11 @@ li.message form :position relative - :font - :size 14px + input, + textarea, + label + :font + :size 14px #user_name :margin @@ -596,7 +599,6 @@ li.message .from .right h5 :color #ccc - input:not([type='submit']), textarea :font @@ -612,6 +614,8 @@ textarea :-webkit-border-radius 5px :-moz-border-radius 5px +input[type='checkbox'] + :width auto .submit_block :text @@ -685,7 +689,6 @@ label :display inline .public_toggle - :width 300px :font :size smaller :style italic @@ -1298,6 +1301,7 @@ ul.aspects :display inline .floating + :position relative :padding 12px :background :color rgb(255,255,255) @@ -1306,8 +1310,12 @@ ul.aspects :border :bottom 1px solid #ccc :top 1px solid #fff + :min-height 500px - + .submit_block + :position absolute + :bottom 13px + :right 12px .bottom_notification :position fixed @@ -1325,3 +1333,23 @@ ul.aspects :color #fff :padding 21px + +.inline_aspect_listing + :margin 0 + :padding 0 + :list + :style none + :display inline + > li + :display inline + :font + :weight normal + + &:after + :content ", " + + &:last-child + &:before + :content "and " + &:after + :content "."