doctype html html

head
  meta content=("text/html; charset=utf-8") http-equiv="Content-Type" /
  link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css" rel="stylesheet" /
  script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"
  script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js"
  style type="text/scss"
    cdata:
      | \.form {
      | max-width: 650px;
      | margin: auto;
      | }

      | \.btn {
      | margin-top: 20px;
      | }
body.blue-grey
  .row.form
    .col.s12
      .card.hoverable
        .card-content
          span.card-title.center
            | Welcome #{@resource.email}!
          .divider
          .center
            p You can confirm your account email through the link below:
            = link_to 'Confirm my Account', \
              confirmation_url(@resource, confirmation_token: @token), \
              class: 'btn waves-effect cyan' \