summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorRosemary Sanchez <rsanchez@madebyuppercut.com>2013-07-19 13:45:36 -0600
committerRosemary Sanchez <rsanchez@madebyuppercut.com>2013-07-19 14:34:32 -0600
commit7828458de33ce2f171942a37c344169c2c116f64 (patch)
treea29e9001a80bad3362531d5cea46d7cb0c676e20 /app/views
parent84387cb42897b864d68c0c20bef1a409e18931b8 (diff)
Create sign up views.
Diffstat (limited to 'app/views')
-rw-r--r--app/views/sign_ups/new.html.erb25
-rw-r--r--app/views/sign_ups/show.html.erb1
2 files changed, 25 insertions, 1 deletions
diff --git a/app/views/sign_ups/new.html.erb b/app/views/sign_ups/new.html.erb
index 08b8f9c..489b72e 100644
--- a/app/views/sign_ups/new.html.erb
+++ b/app/views/sign_ups/new.html.erb
@@ -1 +1,24 @@
-New Signup here
+<h2>Just the HR performance management features you want. Nothing else.</h2>
+
+<p>We created Parley <span class="customers">for small and medium-sized businesses</span> to engage employees and retain great talent through continuous conversation. Parley brings you <span class="product">just the performance management features you need</span> in one affordable tool, like the ability to set <span class="features">regular check-ins</span>, get <span class="features">meaningful peer reviews</span> and create <span class="features">flexible, authentic goals</span> your employees actually want to achieve.</p>
+
+<%= form_for(@sign_up) do |f| %>
+ <% if @sign_up.errors.any? %>
+ <div id="error_explanation">
+ <ul>
+ <% @sign_up.errors.full_messages.each do |msg| %>
+ <li><%= msg %></li>
+ <% end %>
+ </ul>
+ </div>
+ <% end %>
+
+ <div class="field">
+ <%= f.label :email, "Want to know when we're ready to launch?" %><br />
+ <%= f.text_field :email %>
+ </div>
+ <div class="actions">
+ <%= f.submit "Sign up now" %>
+ </div>
+<% end %>
+
diff --git a/app/views/sign_ups/show.html.erb b/app/views/sign_ups/show.html.erb
new file mode 100644
index 0000000..ba6cb52
--- /dev/null
+++ b/app/views/sign_ups/show.html.erb
@@ -0,0 +1 @@
+<p>Thanks for signing up with Parley. We&rsquo;ll keep you informed with any important updates and, of course, the official launch date.</p>