Skip to content

Instantly share code, notes, and snippets.

@c3mediagroup
Created July 24, 2009 15:34
Show Gist options
  • Save c3mediagroup/154370 to your computer and use it in GitHub Desktop.
Save c3mediagroup/154370 to your computer and use it in GitHub Desktop.
# /app/views/user/new.html.erb
<h1><%= @page_title = 'Create User' %></h1>
<% if current_account.reached_user_limit? %>
<p>
You have reached the maximum number of users you can have with your account level. You can either delete some of your users or <a href="/account/plan">upgrade your account</a> to be able to create a new user.
</p>
<% else %>
<% form_for @user, :html => { :id => 'new_user_form', :multipart => true, :class => "wufoo topLabel"} do |f| -%>
<%= render :partial => "form", :locals => { :f => f, :user => @user } %>
<% end -%>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment