signup.html.erb
3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<% if @register_pending %>
<div id='thanks-for-signing'>
<% if environment.has_custom_welcome_screen? %>
<%= environment.settings[:signup_welcome_screen_body].html_safe %>
<% elsif environment.enabled?('admin_must_approve_new_users')%>
<h1><%= _("Welcome to %s!") % environment.name %></h1>
<h3><%= _("Thanks for signing up, we're thrilled to have you on our social network!") %></h3>
<p><%= _("Firstly, some tips for getting started:") %></p>
<% unless environment.enabled?('skip_new_user_email_confirmation') %>
<h4><%= _("Confirm your account and wait for admin approvement!") %></h4>
<p><%= _("You should receive a welcome email from us shortly. Please take a second to follow the link within to confirm your account.") %></p>
<p><%= _("You won't appear as %s until your account is confirmed and approved.") % link_to(_('user'), {:controller => :search, :action => :people, :filter => 'more_recent'}, :target => '_blank') %></p>
<% else %>
<h4><%= _("Wait for admin approvement!") %></h4>
<p><%= _("The administrators will evaluate your signup request for approvement.") %></p>
<p><%= _("You won't appear as %s until your account is approved.") % link_to(_('user'), {:controller => :search, :action => :people, :filter => 'more_recent'}, :target => '_blank') %></p>
<% end %>
<h4><%= _("What to do next?") %></h4>
<p><%= _("%s. Upload an avatar and let your friends find you easily :)") % link_to(_('Customize your profile'), {:controller => 'doc', :section => 'user', :topic => 'editing-person-info'}, :target => '_blank') %></p>
<p><%= _("Learn the guidelines. Read the %s for more details on how to use this social network!") % link_to(_('Documentation'), {:controller => 'doc'}, :target => '_blank') %></p>
<p><%= _("%s your Gmail, Yahoo and Hotmail contacts!") % link_to(_('Invite and find'), {:controller => 'doc', :section => 'user', :topic => 'invite-contacts'}, :target => '_blank') %></p>
<p><%= _("Start exploring and have fun!") %></p>
<% else %>
<h1><%= _("Welcome to %s!") % environment.name %></h1>
<h3><%= _("Thanks for signing up, we're thrilled to have you on our social network!") %></h3>
<p><%= _("Firstly, some tips for getting started:") %></p>
<h4><%= _("Confirm your account!") %></h4>
<p><%= _("You should receive a welcome email from us shortly. Please take a second to follow the link within to confirm your account.") %></p>
<p><%= _("You won't appear as %s until your account is confirmed.") % link_to(_('user'), {:controller => :search, :action => :people, :filter => 'more_recent'}, :target => '_blank') %></p>
<h4><%= _("What to do next?") %></h4>
<p><%= _("%s. Upload an avatar and let your friends find you easily :)") % link_to(_('Customize your profile'), {:controller => 'doc', :section => 'user', :topic => 'editing-person-info'}, :target => '_blank') %></p>
<p><%= _("Learn the guidelines. Read the %s for more details on how to use this social network!") % link_to(_('Documentation'), {:controller => 'doc'}, :target => '_blank') %></p>
<p><%= _("%s your Gmail, Yahoo and Hotmail contacts!") % link_to(_('Invite and find'), {:controller => 'doc', :section => 'user', :topic => 'invite-contacts'}, :target => '_blank') %></p>
<p><%= _("Start exploring and have fun!") %></p>
<% end %>
</div>
<% else %>
<h1><%= _('Sign up for %s!') % environment.name %></h1>
<%= render :partial => 'signup_form' %>
<% end %>