outcomeGroupForm.handlebars 806 B

1234567891011
  1. <form action="{{url}}" class="outcome_group" method="post">
  2. <label for="outcome_group_title">{{#t "title"}}Name this group{{/t}}:</label>
  3. <input id="outcome_group_title" class="outcome_title" name="title" size="50" type="text" placeholder="{{#t}}New Outcome Group{{/t}}" value="{{title}}">
  4. <label for="outcome_group_description">{{#t "group_description"}}Describe this group{{/t}}:</label>
  5. <textarea cols="40" id="outcome_group_description" name="description" rows="20" style="width: 100%; height: 150px;">{{description}}</textarea>
  6. <div class="button-container pull-right">
  7. <button type="button" class="btn cancel_button">{{#t "#buttons.cancel"}}Cancel{{/t}}</button>
  8. <button type="submit" class="btn btn-primary submit_button">{{#t "#buttons.save"}}Save{{/t}}</button>
  9. </div>
  10. </form>