Class: Contentful::Bootstrap::ThanksView

Inherits:
Object
  • Object
show all
Defined in:
lib/contentful/bootstrap/server.rb

Instance Method Summary collapse

Instance Method Details

#renderObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/contentful/bootstrap/server.rb', line 28

def render
  <<-HTML
  <html><head>
    <link rel="shortcut icon" type="image/png" href="https://www.contentful.com/assets/images/favicons/favicon-47dc5f9d.png"/>
    <link rel="shortcut icon" type="image/png" href="https://www.contentful.com/assets/images/favicons/favicon-47dc5f9d.png"/>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
  </head><body>
    <div class="container">
      <div class="jumbotron">
        <h1>Contentful Bootstrap</h1>
        <h4>Thanks! The OAuth Token has been generated</h4>
        <p>The Space you specified will now start to create. You can close this window freely</p>
      </div>
    </div>
  </body></html>
  HTML
end