-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Font-awesome 5 doesnt have old refresh replaced with sync
- Loading branch information
1 parent
cbfd605
commit e814a6d
Showing
1 changed file
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
<div class="col-md-9 col-md-offset-3 label-small"> | ||
Click the circle icon for a new random ID, or the cross icon to delete the random ID and enter a value manually. | ||
Click the refresh icon for a new random ID, or the cross icon to delete the random ID and enter a value manually. | ||
</div> | ||
|
||
{{#form.element | ||
{{#form.element | ||
controlType="text" | ||
id="member-id" | ||
label="Member ID" | ||
property="symbol" | ||
helpText="The Member ID is the unique identifier for each member and can't be changed. The Member ID can contain only upper case letters, and must not be longer than 8 characters." | ||
required=false as |el|}} | ||
|
||
<div class="input-group-no-float"> | ||
{{el.control}} | ||
|
||
<span class="input-group-addon refresh-input" title="Refresh" aria-label="Refresh" {{action 'refresh'}}><i class="fas fa-refresh"></i></span> | ||
<span class="input-group-addon clear-input" title="Clear" aria-label="Clear" {{action 'clear'}}><i class="fas fa-times-circle"></i></span> | ||
</div> | ||
{{/form.element}} | ||
<div class="input-group-no-float"> | ||
{{el.control}} | ||
|
||
<span class="input-group-addon refresh-input" title="Refresh" aria-label="Refresh" {{action 'refresh'}}><i | ||
class="fas fa-sync"></i></span> | ||
<span class="input-group-addon clear-input" title="Clear" aria-label="Clear" {{action 'clear'}}><i | ||
class="fas fa-times-circle"></i></span> | ||
</div> | ||
{{/form.element}} |