Last active
February 17, 2018 09:14
-
-
Save AnkurVyas-BTC/247917190dc93a729b477d1171d88b36 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <div class="container"> | |
| <%= form_tag comparisons_compare_sections_path, remote: true do %> | |
| <div class="row"> | |
| <div class="col-6 pad-a10"> | |
| <%= text_area_tag 'left_section', @sample_text, class: 'form-control', size: '50x25' %> | |
| </div> | |
| <div class="col-6 pad-a10"> | |
| <%= text_area_tag 'right_section', @sample_text, class: 'form-control', size: '50x25' %> | |
| </div> | |
| <div class="col-12 text-center pad-t10"> | |
| <%= submit_tag 'Compare Contents', class: 'btn btn-large btn-success compare-btn' %> | |
| </div> | |
| </div> | |
| <% end %> | |
| <div class="row"> | |
| <div class="result text-success"> | |
| Both contents are same! | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment