Project

General

Profile

« Previous | Next » 

Revision 4c394c0f

Added by Scott Ullrich almost 15 years ago

Misc formatting

View differences:

usr/local/www/installer.php
433 433
									<div>
434 434
										<center>
435 435
											<div id="pfsensetemplate">
436
												<table bgcolor="FFFF00" width="380" height="50" cellpadding="5" style="border:1px dashed;">
437
													<tr>
436
												<table bgcolor="FFFF00" width="400" height="30" cellpadding="2" style="border:1px dashed;">
437
													<tr valign="middle">
438 438
														<td>
439 439
															<center><b>Please verify that the following is correct:</b></center>
440 440
														</td>
......
586 586
			<input type="hidden" name="state" value="verify_before_install">
587 587
			<div id="mainlevel">
588 588
				<center>
589
				<b><font face="arial" size="+2">Welcome to the {$g['product_name']} PCSysInstaller!</b></font><p/>
590
				<font face="arial" size="+1">This utility will install {$g['product_name']} to a hard disk, flash drive, etc.</font>
591 589
				<table width="100%" border="0" cellpadding="5" cellspacing="0">
592 590
			 		<tr>
593 591
			    		<td>
......
609 607
		$custom_txt = gettext("WARNING: Could not find any suitable disks for installation.");
610 608
	} else {
611 609
		// Prepare disk selection dropdown
612
		$custom_txt = "Disk: <select name='disk'>\n";
610
		$custom_txt = <<<EOF
611
												<table bgcolor="FFFF00" width="400" height="30" cellpadding="2" style="border:1px dashed;">
612
													<tr valign="middle">
613
														<td>
614
															<center><b>Select the installation parameters for {$g['product_name']}:</b></center>
615
														</td>
616
													</tr>
617
												</table><p/>
618
EOF;
619
		$custom_txt .= "Disk: <select name='disk'>\n";
613 620
		foreach($disks as $disk) {
614 621
			$disksize = format_bytes($disk['size'] * 1048576);
615 622
			$custom_txt .= "<option value='{$disk['disk']}'>{$disk['disk']} - {$disksize} - {$disk['desc']}</option>\n";
......
661 668
	body_html();
662 669
	// Only enable ZFS if this exists.  The install will fail otherwise.
663 670
	if(file_exists("/boot/gptzfsboot")) 
664
		$zfs_enabled = "<a href=\"installer.php?state=verify_before_install&fstype=ZFS\">Easy installation of {$g['product_name']} using the ZFS filesystem</a><p/>";
671
		$zfs_enabled = "<tr bgcolor=\"#9A9A9A\"><td align=\"center\"><a href=\"installer.php?state=verify_before_install&fstype=ZFS\">Easy installation of {$g['product_name']} using the ZFS filesystem</a></td></tr>";
665 672
	$disk = installer_find_first_disk();
666 673
	if(!$disk) 
667 674
		echo gettext("WARNING: Could not find any suitable disks for installation.");
......
685 692
			     						<td>
686 693
											<div id="pfsenseinstaller">
687 694
												<center>
688
													Rescue config.xml<p/>
689
													<a href="installer.php?state=verify_before_install&disk={$disk}&fstype=UFS">Easy installation of {$g['product_name']} using the UFS filesystem</a><p/>
690
												 	{$zfs_enabled}
691
													<a href="installer.php?state=custominstall">Custom installation of {$g['product_name']}</a><p/>
692
													<a href='/'>Cancel and return to Dashboard</a>
695
													<table cellspacing="3" cellpadding="3" style="border: 1px dashed;">
696
														<tr bgcolor="#CECECE"><td align="center">
697
															Rescue config.xml
698
														</td></tr>
699
														<tr bgcolor="#AAAAAA"><td align="center">
700
															<a href="installer.php?state=verify_before_install&disk={$disk}&fstype=UFS">Easy installation of {$g['product_name']} using the UFS filesystem</a>
701
														</td></tr>
702
													 	{$zfs_enabled}
703
														<tr bgcolor="#AAAAAA"><td align="center">
704
															<a href="installer.php?state=custominstall">Custom installation of {$g['product_name']}</a>
705
														</td></tr>
706
														<tr bgcolor="#CECECE"><td align="center">
707
															<a href='/'>Cancel and return to Dashboard</a>
708
														</td></tr>
709
													</table>
693 710
												</center>
694 711
											</div>
695 712
			     						</td>

Also available in: Unified diff