<%= form.label :name, class: 'uk-form-label' %>
<%= form.text_field :name, class: 'uk-input' %>
<%= form.label :website, class: 'uk-form-label' %>
<%= form.text_field :website, class: 'uk-input' %>
<%= form.label :repository_type, class: 'uk-form-label' %>
<%= form.select :repository_type, [nil, 'Github'], {}, class: 'uk-select' %>
<%= form.submit class: 'uk-button uk-button-default uk-margin' %>
<% end %>