Modifying the PeopleSoft Pure Internet Architecture Sign-in Page
The PeopleSoft Pure Internet Architecture enables users to select their sign-in language by selecting the language from the sign-in page. This page is maintained on the web server as a static HTML file and is not generated from a PeopleTools page definition. You must edit this HTML file to add the new language code.
Work with your web server administrator to edit the signin.html file on your PeopleTools web server. The signin.html file contains an HTML table that lists each PeopleTools language. Add a new entry to this table to reference the name of your new language in the new language. If the language does not use Latin characters, you might want to reference an image that contains the name of the language to ensure that all users can correctly see the language name, even if their web browser settings are not configured appropriately for that language.
In the following example, we added the lines shown in boldface to the signin.html file.
<tr>
<td width="50%" class="pslogintext"><a href="?cmd=login&languageCd=POL"
title="<%=psPOL%>">Polski</a></td>
<td width="50%" class="pslogintext"><a href="?cmd=login&languageCd=POR"
title="<%=psPOR%>">Português</a></td>
</tr>
<tr>
<td width="50%" class="pslogintext"><a href="?cmd=login&languageCd=QUE"
title="<%=psQUE%>">Quechua</a></td>
<td width="50%" class="pslogintext"><a href="?cmd=login&languageCd=FIN"
title="<%=psFIN%>">Suomi</a></td>
</tr>