155d56e8e8
- 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/
36 lines
1.6 KiB
HTML
36 lines
1.6 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"
|
|
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">
|
|
<h:head>
|
|
<title>Login Testpage</title>
|
|
</h:head>
|
|
<h:body>
|
|
<h:form id="login">
|
|
<p:panel header="Login" style="width: 450px; margin: auto; margin-top: 100px;">
|
|
<p:messages id="messages" showDetail="true" closable="true">
|
|
<p:autoUpdate />
|
|
</p:messages>
|
|
<p:graphicImage url="/resources/images/logo.jpg" alt="MSS Machine Safety Services" style="width: 100%;"/>
|
|
<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>
|