Index: typo3/sysext/install/Resources/Private/Templates/StepOutput.html =================================================================== --- typo3/sysext/install/Resources/Private/Templates/StepOutput.html (revision 7614) +++ typo3/sysext/install/Resources/Private/Templates/StepOutput.html (working copy) @@ -58,6 +58,10 @@
  • + + +
  • +
  • Index: typo3/sysext/install/Resources/Private/Templates/SetupGeneral.html =================================================================== --- typo3/sysext/install/Resources/Private/Templates/SetupGeneral.html (revision 7614) +++ typo3/sysext/install/Resources/Private/Templates/SetupGeneral.html (working copy) @@ -32,6 +32,10 @@
  • + + +
  • +
  • Index: typo3/sysext/install/Resources/Public/Javascript/install.js =================================================================== --- typo3/sysext/install/Resources/Public/Javascript/install.js (revision 7614) +++ typo3/sysext/install/Resources/Public/Javascript/install.js (working copy) @@ -64,3 +64,16 @@ $(document.body).addClassName('standalone'); } }); + + +/** + * Toogles the view of a password field + * + * If the field is type password it will be changed to type text and opposite. + * This is done to enable the user of seeign the value of the field. + * + * @author Lars Houmark + */ + function togglePasswordField(field) { + document.getElementById(field).type = (document.getElementById(field).type == 'password' ? 'text' : 'password'); + } \ No newline at end of file Index: typo3/sysext/install/Resources/Public/Stylesheets/install_123.css =================================================================== --- typo3/sysext/install/Resources/Public/Stylesheets/install_123.css (revision 7614) +++ typo3/sysext/install/Resources/Public/Stylesheets/install_123.css (working copy) @@ -198,4 +198,9 @@ #t3-install-123-stepoutputsummary dd { float: left; +} + +#t3-install-123-form-showpassword { + float: left; + margin-left: 8em; } \ No newline at end of file Index: typo3/sysext/install/Resources/Public/Stylesheets/general.css =================================================================== --- typo3/sysext/install/Resources/Public/Stylesheets/general.css (revision 7614) +++ typo3/sysext/install/Resources/Public/Stylesheets/general.css (working copy) @@ -71,6 +71,12 @@ padding: 0.2em 0; } +label.t3-install-label-inline { + width: auto; + margin: 0; + padding: 0 0 0 0.5em; +} + fieldset span { float: left; width: 29em; Index: typo3/sysext/install/Resources/Public/Stylesheets/install.css =================================================================== --- typo3/sysext/install/Resources/Public/Stylesheets/install.css (revision 7614) +++ typo3/sysext/install/Resources/Public/Stylesheets/install.css (working copy) @@ -383,6 +383,11 @@ padding: 0; } +#t3-install-form-showpassword { + float: left; + margin-left: 19em; +} + /* 10: About */