Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<form action="/foo" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="EQ989n1OtoaDjP8puLKl2e0pNpJY4CjjHcBI96Ep76ASEngARvEgWJDRRq7mFY5UPZ4cvhuKFNBzHBQEd9mQtg" autocomplete="off" />
<div class="FormControl-spacingWrapper">
<primer-text-field class="FormControl width-full FormControl--fullWidth">
<label class="FormControl-label" for="first_name">
First name
<span aria-hidden="true">*</span>
</label>
<div class="FormControl-input-wrap">
<input aria-required="true" aria-describedby="validation-bdfe2f3e-16d5-4163-bc9f-87fe46522242 caption-bdfe2f3e-16d5-4163-bc9f-87fe46522242" data-target="primer-text-field.inputElement " class="FormControl-input FormControl-medium" type="text" name="first_name" id="first_name" />
</div>
<div class="FormControl-inlineValidation" id="validation-bdfe2f3e-16d5-4163-bc9f-87fe46522242" hidden="hidden">
<span class="FormControl-inlineValidation--visual" data-target="primer-text-field.validationSuccessIcon" hidden><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill">
<path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path>
</svg></span>
<span class=" FormControl-inlineValidation--visual" data-target="primer-text-field.validationErrorIcon"><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">
<path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>
</svg></span>
<span></span>
</div>
<span class="FormControl-caption" id="caption-bdfe2f3e-16d5-4163-bc9f-87fe46522242">That which we call a rose by any other name would smell as sweet.</span>
</primer-text-field>
<primer-text-field class="FormControl width-full FormControl--fullWidth">
<label class="FormControl-label" for="last_name">
Last name
<span aria-hidden="true">*</span>
</label>
<div class="FormControl-input-wrap">
<input invalid="true" aria-required="true" aria-invalid="true" aria-describedby="validation-17c3d9f9-3926-4d81-93fe-0c1b85d3a1ea caption-17c3d9f9-3926-4d81-93fe-0c1b85d3a1ea" data-target="primer-text-field.inputElement " autofocus="autofocus" class="FormControl-input FormControl-medium" type="text" name="last_name" id="last_name" />
</div>
<div class="FormControl-inlineValidation" id="validation-17c3d9f9-3926-4d81-93fe-0c1b85d3a1ea">
<span class="FormControl-inlineValidation--visual" data-target="primer-text-field.validationSuccessIcon" hidden><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill">
<path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path>
</svg></span>
<span class=" FormControl-inlineValidation--visual" data-target="primer-text-field.validationErrorIcon"><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">
<path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>
</svg></span>
<span>That doesn't look right</span>
</div>
<span class="FormControl-caption" id="caption-17c3d9f9-3926-4d81-93fe-0c1b85d3a1ea">Bueller. Bueller. Bueller.</span>
</primer-text-field>
</div>
</form>
1
2
3
<%= primer_form_with(url: "/foo") do |f| %>
<%= render(InvalidForm.new(f)) %>
<% end %>

app/forms/invalid_form.rb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
# :nodoc:
class InvalidForm < ApplicationForm
form do |my_form|
my_form.text_field(
name: :first_name,
label: "First name",
required: true,
caption: "That which we call a rose by any other name would smell as sweet."
)
my_form.text_field(
name: :last_name,
label: "Last name",
required: true,
caption: "Bueller. Bueller. Bueller.",
validation_message: "That doesn't look right"
)
end
end