21 lines
578 B
Plaintext
21 lines
578 B
Plaintext
<% 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>
|
|
|
|
<%= 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/>
|
|
|
|
<% if flash[:error].present? %>
|
|
<div class="error"><%= flash[:error] %></div>
|
|
<% end %>
|
|
</div>
|
|
<button type="submit">Log in</button>
|
|
<% end %>
|
|
</main>
|