This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/components/user-fields/text.hbs

9 lines
384 B
Handlebars

<label class="control-label" for={{concat "user-" this.elementId}}>
{{html-safe this.field.name}}
{{#if this.field.required}}<span class="required">*</span>{{/if}}
</label>
<div class="controls">
{{input id=(concat "user-" this.elementId) value=this.value maxlength=this.site.user_field_max_length}}
<div class="instructions">{{html-safe this.field.description}}</div>
</div>