mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-07 15:21:58 +08:00
Currently, herb/formatter has at least 4 bugs the prevent us from switching to it (https://github.com/marcoroth/herb/issues 476, 477, 478, and 479). This includes manual fixes for each issue. herb/formatter also introduces a rubocop violation for the Layout/AssignmentIndentation cop. This disables that cop.
30 lines
908 B
Text
30 lines
908 B
Text
<div
|
|
class="
|
|
overflow-hidden rounded-lg shadow ring-1 ring-black ring-opacity-5
|
|
bg-white divide-y divide-gray-200
|
|
"
|
|
>
|
|
<% form(action: "#{@project.path}/discount-code", method: :post) do %>
|
|
<div class="px-4 py-5 sm:p-6">
|
|
<div class="space-y-12">
|
|
<div>
|
|
<div class="grid grid-cols-1 gap-x-6 gap-y-8 sm:grid-cols-8">
|
|
<div class="sm:col-span-4">
|
|
<%== part(
|
|
"components/form/text",
|
|
name: "discount_code",
|
|
label: "Discount Code",
|
|
attributes: {
|
|
required: true,
|
|
}
|
|
) %>
|
|
</div>
|
|
<div class="col-span-2 sm:col-span-3 flex justify-start items-end">
|
|
<%== part("components/form/submit_button", text: "Apply") %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|