diff options
author | pb1dft <pb1dft@ampache> | 2006-11-20 00:35:34 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-11-20 00:35:34 +0000 |
commit | 01b784da2d7dcfcd08739e7ae8ed1e890805f12d (patch) | |
tree | 3ed6b171aebe6f3ff89b6631a8deb5028c087a77 /templates/show_install_account.inc.php | |
parent | 78de76eb7af36bb5c174ee7c3fafb41814fec3ed (diff) | |
download | ampache-01b784da2d7dcfcd08739e7ae8ed1e890805f12d.tar.gz ampache-01b784da2d7dcfcd08739e7ae8ed1e890805f12d.tar.bz2 ampache-01b784da2d7dcfcd08739e7ae8ed1e890805f12d.zip |
Fixed missing DOCTYPE and other required stuff on the install pages
Diffstat (limited to 'templates/show_install_account.inc.php')
-rw-r--r-- | templates/show_install_account.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/show_install_account.inc.php b/templates/show_install_account.inc.php index b2e580b1..e6257688 100644 --- a/templates/show_install_account.inc.php +++ b/templates/show_install_account.inc.php @@ -25,12 +25,13 @@ */ ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>"> <head> <title>Ampache :: For The Love Of Music - Install</title> +<?php require_once(conf('prefix') . "/templates/install.css"); ?> </head> <body> -<?php require_once(conf('prefix') . "/templates/install.css"); ?> <div id="header"> <h1><?php echo _("Ampache Installation"); ?></h1> <p>For the love of Music</p> @@ -62,7 +63,7 @@ <table> <tr> <td class="align"><?php echo _("Username"); ?></td> - <td><input type="textbox" name="local_username" value="admin" /></td> + <td><input type="text" name="local_username" value="admin" /></td> </tr> <tr> <td class="align"><?php echo _("Password"); ?></td> |