html reset

This commit is contained in:
Mark Moser
2017-03-20 10:57:50 -05:00
parent cb6f41fe29
commit 0727440a31
58 changed files with 397 additions and 529 deletions

View File

@@ -1,20 +1,14 @@
<% content_for :title, "Skills Assessment" %>
<main class="intro_tpl">
<h1 class="prft-heading">Let's Get Started</h1>
<p>
Hey there! Give us your Test ID, and we'll get you started.
</p>
<h1>Let's Get Started</h1>
<%= form_tag(validate_candidate_path) do %>
<div class="form-group">
<label for="userid">What's your Test ID?</label>
<input type="text" id="test_id" name="test_id" required/>
<p>Hey there! Give us your Test ID, and we'll get you started.</p>
<% if flash[:error].present? %>
<div class="error"><%= flash[:error] %></div>
<% end %>
</div>
<button type="submit">Log in</button>
<% end %>
</main>
<%= form_tag(validate_candidate_path) do %>
<%= render partial: "shared/generic_flash" %>
<label for="test_id">What's your Test ID?</label>
<input type="text" id="test_id" name="test_id" required />
<button type="submit">Log in</button>
<% end %>