your Subscription</h1></header> <p>Sorry it looks like your trial or subscription has expired.</p> <p><a href="/subscriptions">Signup for a subscription</a> to create projects.</p> <% else %> <h1>Projects</h1> <div id="sinatra_authentication_flash"> <%= flash[:notice] %> </div> <div class="account-settings"> <% if @subscription.exceeded_project_limit?(current_user) %> <p>Sorry you have reached your maximum number of projects.</p> <p>Please <a href="/subscriptions">upgrade your subscription</a> to create more projects</p> <% elsif
[email protected]? %> <header class="page-header"><h1>Renew your Subscription</h1></header> <p>Sorry your subscription has expired.</p> <p>Please <a href="/subscriptions">upgrade your subscription</a> to create more projects</p> <% else %> <form action="/projects/create" method="post"> <div class="field"> <div class="label"> <label for="project_id" style="font-size: 1.3em;">Project name</label> </div> <input id="project_project_id" name="project[project_id]" size="30" type="text" value="<%= params[:project_id] %>"/> </div> <p></p> <div class="label"> <label for="private" style="font-size: 1.3em;">Who can access this project?</label> </div> <p class="checkbox"> <label> <% if @subscription.on_trial? && @subscription.active? %> <p class="lock-warning">Trial accounts are limited to public projects only. <a href="/subscriptions">Signup for a subscription</a> to creat private projects.</p></span> <input disabled="disabled" name="project[private]" value="true" type="radio"> <span class="disabled-option"> Only me (Private)</span> <% else %> <input name="project[private]" value="true" type="radio" checked="checked"> Only me <% end %> </label> Code and Rhetoric