createguide.html.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class='modal-dialog' id='guideDialog'>
  2. <style>
  3. #guideDialog {width: 780px}
  4. #guideDialog h2 {margin: 10px 0 30px 0; font-size: 16px; font-weight: normal}
  5. #guideDialog h3 {margin: 5px 0; font-size: 20px;}
  6. #guideDialog .modal-footer {border-top: none; text-align: center; padding-top: 10px; padding-bottom: 40px;}
  7. #guideDialog .modal-footer .btn + .btn {margin-left: 20px}
  8. #guideDialog .program-type {padding: 0 40px}
  9. #guideDialog .program-type-img {width: 280px; border: 1px solid #CBD0DB; border-radius: 2px; margin-bottom: 10px; cursor: pointer; margin-top: 1px}
  10. #guideDialog .program-type-img:hover {border-color: #006AF1; box-shadow: 0 0 10px 0 rgba(0,0,0,.25);}
  11. #guideDialog .program-type.active img {border-color: #006AF1; border-width: 2px; margin-top: 0}
  12. </style>
  13. <?php $group = $from == 'PGM' ? "data-group='program'" : "data-group='project'";?>
  14. <div class='modal-content'>
  15. <div class='modal-body'>
  16. <button class="close" data-dismiss="modal">x</button>
  17. <h2 class='text-center'><?php echo $lang->program->chooseProgramType; ?></h2>
  18. <div class='row'>
  19. <div class='col-xs-6'>
  20. <div class='program-type text-center'>
  21. <?php echo html::a($this->createLink("project", "create", "model=scrum&programID=$programID&from=$from"), "<img class='program-type-img' data-type='scrum' src='{$config->webRoot}theme/default/images/main/scrum.png'>", '', $group)?>
  22. <h3><?php echo $lang->program->scrum; ?></h3>
  23. <p><?php echo $lang->program->scrumTitle; ?></p>
  24. </div>
  25. </div>
  26. <div class='col-xs-6'>
  27. <div class='program-type text-center'>
  28. <?php echo html::a($this->createLink("project", "create", "model=waterfall&programID=$programID&from=$from"), "<img class='program-type-img' data-type='waterfall' src='{$config->webRoot}theme/default/images/main/waterfall.png'>", '', $group)?>
  29. <h3><?php echo $lang->program->waterfall; ?></h3>
  30. <p><?php echo $lang->program->waterfallTitle; ?></p>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. </div>