Register Your Device
This device is not registered — add it below to continue.
<%= form_with(model: @device, url: device_registrations_path, local: true,
data: { controller: "device-registration" }) do |f| %>
<%= f.label :name, "Device Name", class: "form-label fw-semibold text-secondary" %>
<%= f.text_field :name, class: "form-control apple-input-lg",
placeholder: "e.g., My Laptop, iPhone 14, Office PC", required: true %>
<%= f.hidden_field :token, data: { device_registration_target: "token" } %>
<%= f.submit "Register Device",data: {turbo: false}, class: "btn btn-primary apple-btn-lg w-100 mt-3" %>
<% end %>