Browse Source

Minor - Add icon to form buttons

Angel Fernando Quiroz Campos 10 years ago
parent
commit
8d1969ebfb
1 changed files with 6 additions and 2 deletions
  1. 6 2
      main/template/default/social/form_modals.tpl

+ 6 - 2
main/template/default/social/form_modals.tpl

@@ -12,7 +12,9 @@
                 {{ messageForm }}
             </div>
             <div class="modal-footer">
-                <button type="button" id="btn-send-message" class="btn btn-primary">{{ 'Send' | get_lang }}</button>
+                <button type="button" id="btn-send-message" class="btn btn-primary">
+                    <i class="fa fa-send"></i> {{ 'Send' | get_lang }}
+                </button>
             </div>
         </div>
     </div>
@@ -32,7 +34,9 @@
                 {{ invitationForm }}
             </div>
             <div class="modal-footer">
-                <button type="button" id="btn-send-invitation" class="btn btn-primary">{{ 'Send' | get_lang }}</button>
+                <button type="button" id="btn-send-invitation" class="btn btn-primary">
+                    <i class="fa fa-send"></i> {{ 'Send' | get_lang }}
+                </button>
             </div>
         </div>
     </div>