<?php
$filename = 'config.php';
if (!file_exists($filename)) {
header("Location: configurar.php");
die;
}
include "head.php";
include "config.php";
?>
<section data-role="page" id="login_page" data-theme="<?php echo $MOBILE_THEME; ?>">
<header data-role="header" data-position="fixed">
<h3>Multi Sistemas</h3>
</header>
<div data-role="content">
<center>
<h3>OLT Show</h3>
<p>Status & Manager
</center>
<h2>Login</h2>
<form method="post" id="loginForm" action="login.php">
<label for="password">Usuario:</label>
<input class="required" type="text" name="username" id="username" placeholder="admin">
<label for="password">Senha:</label>
<input class="required" type="password" name="password" id="password" placeholder="senha">
<input type="submit" value="Entrar">
<!-- <a href="login.php" class="ui-btn ui-icon-check ui-btn-icon-bottom" value="Entrar" id="btnLogin">Entrar</a> -->
</form>
</div>
</div>
<footer data-role="footer" data-position="fixed">
<h3><?php echo $APP_ISP_NAME; ?></h3>
</footer>
</section>
</body>
</html>
To embed this project on your website, copy the following code and paste it into your website's HTML: