Add analytics
[bus.git] / busui / owa / modules / base / templates / install_check_env.tpl
maxious 1 <!-- <div class="panel_headline"><?php //echo $headline;?></div> -->
2
3 <h2>Uh-oh. We found a few issues.</h2>
4
5 <p>We found a few problems with your server environment. Please resolve these issues and start the installation again.</p>
6
7 <style>
8 .form-row {border-bottom:1px solid #efefef;padding:10px;}
9 .form-label {position: inherit;}
10 .form-field {position: absolute; left: 420px;}
11 .form-error {background-color: red; border:1px solid red; color:#ffffff; padding:3px;}
12 .form-instructions {position: absolute; left: 650px; font-size:12px; color: #9f9f9f;}
13 </style>
14
15 <h3>Problems</h3>
16 <?php foreach ($errors as $error): ?>
17 <p class="form-row">
18 <span class="form-label"><?php echo $error['name'];?></span>
19 <span class="form-field form-error"><?php echo $error['value'];?></span>
20 <span class="form-instructions"><?php echo $error['msg'];?></span>
21 </p>
22 <?php endforeach; ?>
23