wimba_settings.mustache 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%
  2. # Copyright (C) 2011 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. %>
  18. <%= fields_for :settings, OpenObject.new(settings) do |f| %>
  19. <table style="width: 500px;" class="formtable">
  20. <tr>
  21. <td colspan="2">
  22. <%= mt :description, "You will need access to a [Wimba](%{url}) account.", :url => "http://wimba.com" %>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td><%= f.blabel :domain, :en => "Domain" %></td>
  27. <td>
  28. <%= f.text_field :domain %> <%= mt :domain_description, "(e.g. mycompany.wimba.com)" %>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td><%= f.blabel :user, :username, :en => "Username" %></td>
  33. <td>
  34. <%= f.text_field :user %>
  35. </td>
  36. </tr>
  37. <tr>
  38. <td><%= f.blabel :password, :en => "Password" %></td>
  39. <td>
  40. <%= f.password_field :password, :autocomplete => false %>
  41. </td>
  42. </tr>
  43. </table>
  44. <% end %>