anonoz/itcwresume

View on GitHub
app/views/vetters/recruiters/new.html.erb

Summary

Maintainability
Test Coverage
<div class="container">
  <h2>Create Recruiter For <%= @company.name %></h2>
  <%= form_for(@recruiter, url: vetters_company_recruiters_path, html: {class: 'form-horizontal'}) do |form| %>
  <div class="form-group">
    <label for="recruiter[name]" class="col-sm-2 control-label">HR Name</label>
    <div class="col-sm-10">
      <input required type="name" name="recruiter[name]" class="form-control">
    </div>
  </div>
  <div class="form-group">
    <label for="recruiter[email]" class="col-sm-2 control-label">Login E-mail</label>
    <div class="col-sm-10">
      <input required type="email" name="recruiter[email]" class="form-control">
    </div>
  </div>
  <div class="form-group">
    <div class="col-sm-offset-2 col-sm-10">
      <button type="submit" class="btn btn-default">Create &amp; Send E-mail</button>
      <small>A 8 characters long password will be randomly generated and the credentials will be sent to the recruiter.</small>
    </div>
  </div>
  <% end %>
</div>