Files
pi_mcps/java/mss-failsafe/mssfailsafeWeblayer/src/main/webapp/index.xhtml
T
Patrick Plate 155d56e8e8 chore: reorganize into polyglot monorepo (workshop)
- Move bigmind/ -> mcp/bigmind/
- Move webscraper/ -> mcp/webscraper/
- Move mss-failsafe/ -> java/mss-failsafe/
- Move Wellmann-Shop/ -> java/wellmann-shop/ (normalize to kebab-case)
- Add .roo/ IDE config files to tracking
- Add plans/REPO_STRATEGY.md (monorepo strategy document)
- Expand .gitignore: Java/Maven, Node/TS, coverage, uv.lock
- Rewrite README.md as navigation index
- Update .roo/mcp.json webscraper path to mcp/webscraper/
2026-04-04 08:51:15 +02:00

34 lines
1.4 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://xmlns.jcp.org/jsf/core">
<h:head>
<title>Login Testpage</title>
</h:head>
<h:body>
<h:form id="login">
<p:panel header="Login MSS-Failsafe " style="width: 450px; margin: auto; margin-top: 100px;">
<p:messages id="messages" showDetail="true" closable="true">
<p:autoUpdate />
</p:messages>
<h:panelGrid columns="2" cellpadding="5">
<p:outputLabel for="username" value="Email" />
<p:inputText id="username" value="#{personController.username}" required="true" label="username" />
<p:outputLabel for="password" value="Password:" />
<p:password id="password" value="#{personController.password}" required="true" label="password" />
<p:outputLabel for="rememberMe" value="Remember Me:" />
<p:selectBooleanCheckbox id="rememberMe" value="#{personController.rememberMe}" />
<f:facet name="footer">
<p:commandButton value="Login" action="#{personController.submit()}" ajax="false"/>
</f:facet>
</h:panelGrid>
</p:panel>
</h:form>
</h:body>
</html>