journal-to-canvas-slideshow/templates/input-with-error.hbs

12 lines
399 B
Handlebars
Raw Normal View History

2024-01-28 15:59:53 -06:00
<div class="form-group has-floating-label">
<label class="floating-label" for="{{this.id}}">
{{ternary this.label (camelCaseToCapitalString this.name)}}</label>
<input
class="flex2"
id="{{this.id}}"
name="{{this.name}}"
type="{{ternary this.type 'text'}}"
value="{{this.value}}"
data-change-action="{{this.changeAction}}"
/>
</div>