Login GUI

parent 1a0673f2
...@@ -17,7 +17,7 @@ body { ...@@ -17,7 +17,7 @@ body {
padding: 0; padding: 0;
} }
.theme_dmblack { .tblack {
background-color: #000 !important; background-color: #000 !important;
} }
...@@ -192,11 +192,10 @@ img { ...@@ -192,11 +192,10 @@ img {
</style> </style>
@SCRIPT@ @SCRIPT@
</head> </head>
<body class="@THEME@"> <body class="tblack">
<div id="login" class="@THEME@" > <div id="login" class="tblack" >
<img src="/img/logo_login.png"> <form name="loginform" id="login" class="login tblack" action="@PATH@" method="post">
<form name="loginform" id="login" class="login @THEME@" action="@PATH@" method="post"> <h4>Penguidom Login</h4>
<h4>Domotika Login</h4>
<p> <p>
<label for="user_login">Username<br /> <label for="user_login">Username<br />
<input type="text" name="username" id="user_login" class="input" value="@USERNAME@" size="20" /></label> <input type="text" name="username" id="user_login" class="input" value="@USERNAME@" size="20" /></label>
......
...@@ -457,7 +457,6 @@ class LoginPage(rend.Page): ...@@ -457,7 +457,6 @@ class LoginPage(rend.Page):
html = html.replace("@USERNAME@", '') html = html.replace("@USERNAME@", '')
html = html.replace("@PASSWORD@", '') html = html.replace("@PASSWORD@", '')
html = html.replace("@SCRIPT@", "") html = html.replace("@SCRIPT@", "")
html = html.replace("@THEME@", str(self.core.configGet('web', 'logintheme')))
html = html.replace("@CHECKED@", "") html = html.replace("@CHECKED@", "")
return html return html
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment