post universe creation onboarding process

This commit is contained in:
Andrew Brown 2013-03-11 02:02:10 -05:00
parent 7c9c932f21
commit 0e276cabb5
2 changed files with 16 additions and 0 deletions

View File

@ -4,6 +4,7 @@
<%= f.label :name, :class => 'control-label' %>
<div class="controls">
<%= f.text_field :name, :class => 'text_field' %>
<span class="muted">Can't think of a name? Name it after your story!</span>
</div>
</div>
<div class="control-group">

View File

@ -21,3 +21,18 @@
:class => 'btn btn-danger' %>
</div>
<% u = User.find(session[:user]) if session[:user] %>
<% if session[:user] and u.content_count == 1 and u.universes.length == 1 %>
<div class="well">
<h4>Congratulations, you created your first universe! So... what next?</h4>
<p>
Now that you know the basics of how to create, edit, and view your content, you're free to create anything you want! Personally I typically start with <a href="/plan/characters">characters</a>, but I know some people enjoy starting with a good map full of <a href="/plan/locations">locations</a>. Or if <a href="/plan/magic">magic</a> is more your thing, all power to you!
</p>
<p>
Your universe is empty but ready to be filled with <em>stuff</em> now. You'll find everything you could think to fill it with within the <strong>Plan</strong> menu at the top of the page!
</p>
<p>
<strong>Good luck!</strong>
</p>
</div>
<% end %>