Back to setup

Create a new libvirt backend

<%= form_with(model: @backend, url: { action: "create" }, html: { class: "form-horizontal" }) do |f| %>
<%= f.label :label, class: 'col-sm-2 control-label' %>
<%= f.text_field( :label, class: 'form-control', placeholder: 'Label for this backend' ) %>
<%= f.label :uri, 'URI', class: 'col-sm-2 control-label' %>
<%= f.text_field( :uri, class: 'form-control', placeholder: 'Specify what driver to use, and how to connect to it' ) %>
<%= f.submit "Create", class: 'btn btn-lg btn-success' %>
<% end %>