indexSuccess.php 1.2 KB

1234567891011121314151617181920212223242526
  1. <?php decorate_with(dirname(__FILE__).'/defaultLayout.php') ?>
  2. <div class="sfTMessageContainer sfTMessage">
  3. <?php echo image_tag('/sf/sf_default/images/icons/ok48.png', array('alt' => 'ok', 'class' => 'sfTMessageIcon', 'size' => '48x48')) ?>
  4. <div class="sfTMessageWrap">
  5. <h1>Symfony Project Created</h1>
  6. <h5>Congratulations! You have successfully created your symfony project.</h5>
  7. </div>
  8. </div>
  9. <dl class="sfTMessageInfo">
  10. <dt>Project setup successful</dt>
  11. <dd>This project uses the symfony libraries. If you see no image in this page, you may need to configure your web server so that it gains access to the <code>symfony_data/web/sf/</code> directory.</dd>
  12. <dt>This is a temporary page</dt>
  13. <dd>This page is part of the symfony <code>default</code> module. It will disappear as soon as you define a <code>homepage</code> route in your <code>routing.yml</code>.</dd>
  14. <dt>What's next</dt>
  15. <dd>
  16. <ul class="sfTIconList">
  17. <li class="sfTDatabaseMessage">Create your data model</li>
  18. <li class="sfTColorMessage">Customize the layout of the generated templates</li>
  19. <li class="sfTLinkMessage"><?php echo link_to('Learn more from the online documentation', 'http://www.symfony-project.org/doc') ?></li>
  20. </ul>
  21. </dd>
  22. </dl>