Created
March 26, 2012 11:45
-
-
Save anonymous/2204572 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
<%= form_tag({:controller => "tbl_providers_connection_infos", :action => "update"}, :method => "put") do %> | |
<fieldset class="sectionwrap"> | |
<p>SSL Enabled:<input id="ssl" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.ssl_enabled %>"/></p> | |
<p>Keystore:<input id="keystore" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.keystore %>"/></p> | |
<p>Keystore Password:<input id="keystorepassword" class="text" type="password" size="65" value="<%= @tbl_providers_connection_info.keystore_password %>"/></p> | |
<p>Truststore<input id="keystore" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.truststore %>"/></p> | |
<p>Truststore Password:<input id="truststore" class="text" type="password" size="65" value="<%= @tbl_providers_connection_info.truststore_password %>"/></p> | |
<p>Proxy Enabled:<input id="proxyenable" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.proxy_enabled %>"/></p> | |
<p>Proxy Authtentication Enabled:<input id="proxyauthenable" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.proxy_authentication_enabled %>"/></p> | |
<p>Proxy Host:<input id="proxyhost" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.proxy_host %>"/></p> | |
<p>Proxy Port:<input id="proxyport" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.proxy_port %>"/></p> | |
<p>Proxy Username:<input id="proxyusername" class="text" type="text" size="65" value="<%= @tbl_providers_connection_info.proxy_username %>"/></p> | |
<p>Proxy Password:<input id="proxypassword" class="text" type="password" size="65" value="<%= @tbl_providers_connection_info.proxy_password %>"/></p> | |
<a href="<%= tbl_providers_connection_infos_path %>">back</a> | |
<%= submit_tag 'Submit', :class => 'submit', :confirm => "Are you sure?" %> | |
</fieldset> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment