91 lines
2.4 KiB
HTML
Executable File
91 lines
2.4 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" http-equiv="X-UA-Compatible" content="IE=9"/>
|
|
<title>.</title>
|
|
<link rel="stylesheet" href="style.css"/>
|
|
<script type="text/javascript" src="main.js"></script>
|
|
<hta:application
|
|
id="Verdnatura"
|
|
applicationname="Verdnatura"
|
|
border="dialog"
|
|
maximizebutton="no"
|
|
scrollflat="yes"
|
|
caption="yes"
|
|
selection="no"
|
|
innerborder="no"
|
|
icon="icon.ico"
|
|
scroll="no"
|
|
showintaskbar="yes"
|
|
singleinstance="no"
|
|
sysmenu="yes"
|
|
windowsstate="normal"/>
|
|
</head>
|
|
<body
|
|
onload="App.onLoad(event)"
|
|
onunload="App.onUnload(event)"
|
|
onkeypress="App.onKeyPress(event)"
|
|
onclick="App.onBodyClick(event)">
|
|
<img id="logo" src="verdnatura.svg" alt="Verdnatura"/>
|
|
<div id="fields">
|
|
<div id="inputs">
|
|
<div>
|
|
<label for="user">Usuario</label>
|
|
<input id="user" type="text"/>
|
|
</div>
|
|
<div>
|
|
<label for="password">Contraseña</label>
|
|
<input id="password" type="password"/>
|
|
</div>
|
|
</div>
|
|
<div id="optionsSection">
|
|
<input id="notSignOut" type="checkbox">
|
|
<label for="notSignOut">No cerrar sesión</label>
|
|
<br/>
|
|
<input id="autoLogin" type="checkbox"/>
|
|
<label for="autoLogin">Auto-login</label>
|
|
</div>
|
|
<img id="logout" src="logout.png" onclick="App.logout()"/>
|
|
</div>
|
|
<div id="submit">
|
|
<button id="enter" onclick="App.onEnterClick()">Iniciar sesión</button>
|
|
</div>
|
|
<div id="cleanDiv">
|
|
<a id="clean" href="#" onclick="App.onCleanCacheClick()">Limpiar caché</a>
|
|
</div>
|
|
<div id="branchOptions">
|
|
<div id="branchButton">
|
|
<img id="branchLogo" src="branch.png" onclick="App.openOptions()" alt="Change branch"/>
|
|
<div id="branchSelector">
|
|
<select id="branch" onchange="App.onChangeBranch()"></select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="datasourceOptions">
|
|
<div id="datasourceButton">
|
|
<img id="datasourceLogo" src="datasource.png" onclick="App.openOptions()" alt="Change datasource"/>
|
|
<div id="datasourceSelector">
|
|
<select id="datasource" onchange="App.onChangeDatasource()"></select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="footer">
|
|
<span>
|
|
developed by Verdnatura with
|
|
<span id="heart" onclick="App.onHeartClick()">
|
|
❤
|
|
</span>
|
|
</span>
|
|
<div>
|
|
<div id="background"></div>
|
|
<div id="spinner">
|
|
<img alt="Cargando..." src="spinner.gif"/>
|
|
<br/>
|
|
<span id="loading-message"></span>
|
|
</div>
|
|
<div id="message">
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|