about summary refs log tree commit diff stats
path: root/data/maps/the_ancient/connections.txtpb
blob: 23989ab1fcb40dc7dadaeb66a89cb7154a372ecc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
connections {
  from_room: "Outside"
  to_room: "Inside"
  door { name: "Front Door" }
}
connections {
  from_room: "Inside"
  to_room: "Ending"
  door { name: "End Door" }
}
r: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
- title "Change password"
%h2 Change your password
= devise_error_messages!
#principal
  = form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
    = f.hidden_field :reset_password_token
    .field
      = f.label :password, "New password"
      - if @minimum_password_length
        %em= "(#{@minimum_password_length} characters minimum)"
      = f.password_field :password, autofocus: true, autocomplete: "off"
    .field
      = f.label :password_confirmation, "Confirm new password"
      = f.password_field :password_confirmation, autocomplete: "off"
    .submit-field
      = f.submit "Change my password"
.navigation= link_to "← Back to thoughts", root_url