Commit 2a0d453ff0ae3b42ef7c3b173ebddd13d450da1c

Authored by Jarrett Jordaan
1 parent a60df623

StoryId 778896:Updated Styles

Committed by: Jarrett Jordaan

Reviewed by: Megan Watson
setup/wizard/index.php
... ... @@ -44,7 +44,10 @@
44 44 // Bypass
45 45 if(isset($_GET['bypass'])) {
46 46 if($_GET['bypass'])
47   - touch("install");
  47 + @touch("install");
  48 + else {
  49 + @unlink("install");
  50 + }
48 51 }
49 52  
50 53 if(!$ui->isSystemInstalled()) {
... ...
setup/wizard/installer.php
... ... @@ -452,7 +452,7 @@ class Installer {
452 452 }
453 453  
454 454 private function completeInstall() {
455   - unlink("install");
  455 + @unlink("install");
456 456 }
457 457  
458 458 /**
... ...
setup/wizard/resources/wizard.css
... ... @@ -171,6 +171,7 @@ td {
171 171 }
172 172  
173 173 .error {
  174 + font-weight: bold;
174 175 color: #9F0000;
175 176 }
176 177  
... ... @@ -247,4 +248,8 @@ input#dname {
247 248  
248 249 .adv_options {
249 250 padding: 5px 8px;
  251 +}
  252 +
  253 +#section {
  254 + /*border:1px solid;*/
250 255 }
251 256 \ No newline at end of file
... ...
setup/wizard/templates/database_confirm.tpl
... ... @@ -3,11 +3,12 @@
3 3 <div class="description">
4 4 Please confirm that your database settings have been entered correctly before proceeding with the installation.
5 5 </div>
6   -
  6 +<div id="section">
7 7 <h3>Database Settings</h3>
8 8  
9 9 <form action="index.php?step_name=<?php echo $step_name; ?>" method="post">
10   -<table width="100%">
  10 +
  11 +<table width="20%" class="dbconf">
11 12 <?php
12 13 if($dtypes) {
13 14 $type = '';
... ... @@ -16,14 +17,14 @@ if($dtypes) {
16 17 }
17 18 ?>
18 19 <tr>
19   - <td width="40%"><b>Database type: </b></td>
  20 + <td><b>Database type: </b></td>
20 21 <td><?php echo $type; ?></td>
21 22 </tr>
22 23 <?php
23 24 }
24 25 ?>
25 26 <tr>
26   - <td width="40%"><b>Name: </b></td>
  27 + <td><b>Name: </b></td>
27 28 <td><?php echo $dname; ?></td>
28 29 </tr>
29 30 <tr>
... ... @@ -44,12 +45,12 @@ if($dtypes) {
44 45 </tr>
45 46 <?php } ?>
46 47 </table>
47   -
  48 +</div>
48 49 <h3>Advanced Settings</h3>
49 50  
50   -<table width="100%">
  51 +<table width="46%" class="dbconf">
51 52 <tr>
52   - <td width="40%"><b>Host: </b></td>
  53 + <td><b>Host: </b></td>
53 54 <td><?php echo $dhost; ?></td>
54 55 </tr>
55 56 <tr>
... ... @@ -68,9 +69,9 @@ if($dtypes) {
68 69  
69 70 <h3>Database Users</h3>
70 71  
71   -<table width="100%">
  72 +<table width="16%" class="dbconf">
72 73 <tr>
73   - <td width="40%"><b>DMS Admin Username: </b></td>
  74 + <td><b>DMS Admin Username: </b></td>
74 75 <td><?php echo $dmsname; ?></td>
75 76 </tr>
76 77 <tr>
... ... @@ -87,7 +88,6 @@ if($dtypes) {
87 88 </tr>
88 89 </table>
89 90  
90   -
91 91 <div class="buttons">
92 92 <input type="submit" name="Edit" value="Edit"/>
93 93 <input type="submit" name="Confirm" value="Confirm"/>
... ...
setup/wizard/templates/license.tpl
... ... @@ -13,7 +13,7 @@ Please read and accept the license agreement below before continuing with the se
13 13 </p>
14 14  
15 15 <form action="index.php?step_name=license" method="POST">
16   -<div style="overflow: scroll; height: 500px; width:800px;">
  16 +<div style="overflow: scroll; height: 500px; width:800px; overflow-x:hidden;">
17 17 <h2>KnowledgeTree On-premise Commercial End-User</h2>
18 18 <p>
19 19 License Agreement Version 2.3
... ... @@ -330,13 +330,12 @@ Software. If any provision of this Agreement is deemed invalid or unenforceable
330 330 government agency having jurisdiction, that particular provision will be deemed modified to the extent
331 331 necessary to make the provision valid and enforceable, and the remaining provisions will remain in full
332 332 force and effect. The original of this Agreement has been written in English, and that version will
333   -govern. Les parties aux prŽsentes confirment leur volontŽ que cette convention, de mme que tous les
334   -documents, y compris tout avis, qui s?y rattachent, soient rŽdigŽs en langue anglaise.
  333 +govern.
335 334 </p>
336 335 </div>
337   -
  336 +<br/>
338 337 <div class="agree">
339   - <input type="radio" name="license" value="1" checked="checked"/>I accept the agreement
  338 + <input type="radio" name="license" value="1""/>I accept the agreement
340 339 <br/>
341 340 <input type="radio" name="license" value="0"/>I do not accept the agreement
342 341 </div>
... ...
setup/wizard/templates/welcome.tpl
... ... @@ -2,7 +2,7 @@
2 2  
3 3 <div style='width:800px;'>
4 4 <p>
5   -KnowledgeTreeTM is document management made simple - easily share, track, secure, and manage the documents and records your organization depends on.
  5 +KnowledgeTree<sup>TM</sup> is document management made simple - easily share, track, secure, and manage the documents and records your organization depends on.
6 6 </p>
7 7 <p>
8 8 KnowledgeTree provides an easy-to-use, production-ready, enterprise document management solution for use by corporations, government institutions, medium
... ...