Created
July 24, 2009 15:34
-
-
Save c3mediagroup/154370 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /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