Merge pull request #477 from OWASP/fix/ui-improvements-and-cleanup
Fix UI issues and remove broken links
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# RailsGoat [](https://travis-ci.org/OWASP/railsgoat) [](https://codeclimate.com/github/OWASP/railsgoat)
|
||||
# RailsGoat [](https://travis-ci.org/OWASP/railsgoat)
|
||||
|
||||
RailsGoat is a vulnerable version of the Ruby on Rails Framework from versions 3 to 6. It includes vulnerabilities from the OWASP Top 10, as well as some "extras" that the initial project contributors felt worthwhile to share. This project is designed to educate both developers, as well as security professionals.
|
||||
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
</label>
|
||||
<%= f.select(:receiver_id,
|
||||
options_from_collection_for_select(User.all, :id, :full_name),
|
||||
{},
|
||||
{ prompt: "Select a recipient..." },
|
||||
{ class: "form-select form-select-lg" }) %>
|
||||
<small class="text-muted">Select message recipient</small>
|
||||
</div>
|
||||
|
||||
@@ -207,7 +207,13 @@ function createDataTable(){
|
||||
},
|
||||
"autoWidth": false,
|
||||
"searching": true,
|
||||
"ordering": true
|
||||
"ordering": true,
|
||||
"columns": [
|
||||
{ "title": "Account Number" },
|
||||
{ "title": "Routing Number" },
|
||||
{ "title": "Deposit %" },
|
||||
{ "title": "Actions", "orderable": false }
|
||||
]
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user