1
0

Original Theme

This commit is contained in:
Akamaru
2025-09-15 21:30:17 +02:00
commit df7f5625c3
59 changed files with 1431 additions and 0 deletions

27
login/page-login.html Normal file
View File

@@ -0,0 +1,27 @@
<!doctype html>
<html>
<head>
{{>common/inc-header.html}}
<link rel="stylesheet" type="text/css" href="{{rootPath}}/theme/login/login.css"/>
</head>
<body>
{{loginScripts}}
<div id="banner"></div>
<form id="{{formId}}" method="POST" action="{{rootPath}}/">
Please identify yourself
<br/><br/><br/><br/>
{{hiddenInputs}}
Username
<input type="text" id="loginfield" name="{{loginFieldName}}" value=""/>
<br/><br/>
Password
<input type="password" id="{{passwordFieldId}}" value=""/>
<br/><br/>
<br/><br/>
<input type="submit" id="loginbutton" onclick="{{onLoginClick}}" value="log in"/>
</form>
</body>
</html>