SSH into Root
$ ssh root@123.123.123.123
Change Root Password
SSH into Root
$ ssh root@123.123.123.123
Change Root Password
<script type="text/javascript"> | |
// This identifies your website in the createToken call below | |
Stripe.setPublishableKey('da_key'); | |
// ... | |
</script> | |
<script> | |
jQuery(function($) { | |
$('#form').submit(function(event) { | |
var $form = $(this); |
- semantic_form_for @question do |f| | |
= f.input :title, :label => "Type Your Question", | |
:wrapper_html => {:style => "list-style-type:none"}, | |
:input_html => {:class => 'main_question'} | |
= f.input :body, :input_html => {:class => 'autogrow', :rows => 5}, | |
:wrapper_html => {:style => "list-style-type:none"}, | |
:label => "Question Details (optional)" | |
= f.input :tag_list, :class => 'larger widest', :"data-pre" => @question.tags.map(&:attributes).to_json, | |
:wrapper_html => {:style => "list-style-type:none"} | |